-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.mocharc.yml
49 lines (48 loc) · 1.06 KB
/
.mocharc.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# @see https://github.com/mochajs/mocha/blob/master/example/config/.mocharc.yml
---
allow-uncaught: false
async-only: false
bail: false
check-leaks: true
color: true
delay: false
diff: true
exclude:
- /path/to/some/excluded/file
exit: false
extension:
- js
# fgrep and grep are mutually exclusive
# fgrep: something
file:
- test/helper
forbid-only: false
forbid-pending: false
full-trace: true
# global:
# - $ # sample - global vars
# fgrep and grep are mutually exclusive
# grep: something
growl: false
inline-diffs: false
# needs to be used with grep or fgrep
# invert: false
package: './package.json'
recursive: true
reporter: spec
# reporter-option:
# - foo=bar
# - baz=quux
require:
- '@babel/register'
- test/setup
retries: 1
slow: 75
sort: false
# XXX: we're not using the positional arguments, since package.json scripts already define it for 'test:all'
# spec: test/**/*.spec.js # the positional arguments!
# v8-stack-trace-limit: 100 # V8 flags are prepended with "v8-"
timeout: false
trace-warnings: true # node flags ok
ui: bdd
watch: false