-
Notifications
You must be signed in to change notification settings - Fork 91
/
testem.yml
54 lines (44 loc) · 813 Bytes
/
testem.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
54
test_page: test/index.html#testem
launchers:
node:
command: node test/runner.js
protocol: tap
ringo:
command: ringo -o -1 test/runner.js 2>&1
protocol: tap
rhino:
command: cd test; rhino -opt -1 runner.js
protocol: tap
rhino1.7R5:
command: cd test; rhino-1.7r5-pre -opt -1 runner.js
protocol: tap
nashorn:
command: cd test; nashorn runner.js
protocol: tap
d8:
command: cd test; d8 runner.js
protocol: tap
duktape:
command: cd test; duk runner.js
protocol: tap
quickjs:
command: cd test; qjs --std runner.js
protocol: tap
launch_in_ci:
- node
- ringo
- rhino
- duktape
- quickjs
launch_in_dev:
- Opera
- Firefox
- Chrome
- node
- ringo
- rhino
- rhino1.7R5
- duktape
- quickjs
- nashorn
- d8