-
-
Notifications
You must be signed in to change notification settings - Fork 132
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Extract help and test information to shared docs (#691)
* Extract help and test information to shared docs * Update exercises/shared/tests.md Co-authored-by: Jeremy Walker <[email protected]> Co-authored-by: Jeremy Walker <[email protected]>
- Loading branch information
1 parent
8c2445e
commit 1abac8d
Showing
3 changed files
with
13 additions
and
22 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Help | ||
|
||
Please see the [learning](https://exercism.io/tracks/scala/learning) and [installation](https://exercism.io/tracks/scala/installation) pages if you need any help. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Tests | ||
|
||
To run the tests, run the command `sbt test` in the exercise's directory. | ||
See the [tests page](https://exercism.io/tracks/scala/tests) for more information. | ||
|
||
## Skipped tests | ||
|
||
Initially, only the first test will be enabled. | ||
This is to encourage you to solve the exercise one step at a time. | ||
Once you get the first test passing, remove the `pending` keyword from the beginning of the next test and work on getting that test passing. |