@@ -4,14 +4,35 @@ purescript-spec-discovery is an extension to
4
4
[ purescript-spec] ( https://github.com/purescript-spec/purescript-spec ) that finds
5
5
specs automatically, given a regular expression pattern.
6
6
7
- It only works for NodeJS environments, currently.
7
+ It only works for NodeJS environments, currently, since it's using NodeJS
8
+ facilities to list and load modules.
8
9
9
10
## Usage
10
11
12
+ Install via Spago:
13
+
11
14
``` bash
12
15
spago install spec-discovery
13
16
```
14
17
18
+ Use as main entry point:
19
+
20
+ ``` purescript
21
+ module Test.Main where
22
+
23
+ import Prelude
24
+ import Effect (Effect)
25
+ import Test.Spec.Discovery (discoverAndRunSpec)
26
+ import Test.Spec.Reporter.Console (consoleReporter)
27
+
28
+ main :: Effect Unit
29
+ main = discoverAndRunSpecs [consoleReporter] """My\.Package\..*Spec"""
30
+ ```
31
+
32
+ Or, if you need more sophistication, like an alternative config or whatnot, use
33
+ the ` discover ` function to just return a list of specs and then run them in
34
+ whatever way you need:
35
+
15
36
``` purescript
16
37
module Test.Main where
17
38
@@ -20,21 +41,23 @@ import Effect (Effect)
20
41
import Effect.Aff (launchAff_)
21
42
import Test.Spec.Discovery (discover)
22
43
import Test.Spec.Reporter.Console (consoleReporter)
23
- import Test.Spec.Runner (runSpec)
44
+ import Test.Spec.Runner.Node (runSpecAndExitProcess)
45
+ import Test.Spec.Runner.Node.Config (defaultConfig)
24
46
25
47
main :: Effect Unit
26
48
main = launchAff_ do
27
49
specs <- discover """My\.Package\..*Spec"""
28
- runSpec [consoleReporter] specs
50
+ liftEffect $ runSpecAndExitProcess'
51
+ { defaultConfig: defaultConfig { timeout = Nothing }
52
+ , parseCLIOptions: true
53
+ }
54
+ [consoleReporter]
55
+ specs
29
56
```
30
57
31
58
All modules that match the regular expression, ** and have a definition
32
59
` spec :: Spec Unit ` ** , will be included and run.
33
60
34
- ## Documentation
35
-
36
- Documentation is publised on [ Pursuit] ( https://pursuit.purescript.org/packages/purescript-spec-discovery ) .
37
-
38
61
## Contribute
39
62
40
63
If you have any issues or possible improvements please file them as
0 commit comments