Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision
Loading items

Target

Select target project
  • cosc250-2023/2024assignment1
1 result
Select Git revision
Loading items
Show changes
Commits on Source (2)
......@@ -14,9 +14,23 @@ You can execute the tests with
scala-cli test .
```
or
```sh
scala test .
```
depending on how you have Scala(-CLI) instsalled
To test only a single challenge, say Challenge1
```sh
scala-cli test . --test-only '*.Challenge1Suite'
```
or
```sh
scala test . --test-only '*.Challenge1Suite'
```
// Don't delete the comment below -- it is a Scala-CLI "using" directive to instruct it to use the munit test framework
//> using test.dep org.scalameta::munit::0.7.29
//> using test.dep org.scalameta::munit::1.1.0
package cosc250.assignmentOne
......