-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.recink.yml
53 lines (52 loc) · 2.5 KB
/
.recink.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
50
51
52
53
---
$:
preprocess:
'$.codeclimate.token': 'eval'
emit:
pattern: # Files to include
- /.+\.js$/i
ignore: # Files to ignore
- /^bin\//i
- /^docs\//i
- /^node-bin\//i
- /^(.*\/)?node_modules(\/?$)?/i
npm:
scripts: [] # Scripts to run after installing dependencies
dependencies: # Dependencies to add/overwrite
chai: 'latest'
sinon: 'latest'
e2e:
pattern: # Files to include
- /.+\.e2e\.js$/i
ignore: ~ # Files to exclude
reporter: ~ # TestCafe framework reporter
wait:
interval: 200 # Interval of running uri checks
timeout: 15000 # Timeout to wait for uri's available
uri: # uri's to wait before start running test cases
- http://devexpress.github.io/testcafe/example/
test:
mocha:
options: # Mocha options
ui: 'bdd'
reporter: 'spec'
pattern: # Files to include
- /.+\.spec\.js$/i
ignore: ~ # Files to exclude
coverage:
pattern: # Files to include
- /.+\.js$/i
ignore: # Files to exclude
- /^test\//i
- /.+\.spec\.js$/i
- /.+\.e2e\.js$/i
- /^(.*\/)?node_modules(\/?$)?/i
reporters: # Istanbul reporters
text-summary: ~
codeclimate:
token: 'process.env.CODECLIMATE_REPO_TOKEN' # CodeClimate Repo token
# skip-certificate: true # Skip validating server SSL certificate
### Add other modules here...
main: # Main module definition
root: '.' # Root package directory (containing package.json and tests)
dependencies: ~ # Dependencies to add/overwrite (over $.npm.dependencies config)