-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtestem.json
25 lines (25 loc) · 991 Bytes
/
testem.json
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
{
"launchers": {
"Selenium": {
"command": "node_modules/jasmine-node/bin/jasmine-node spec/selenium/",
"commandx": "node --debug-brk node_modules/jasmine-node/lib/jasmine-node/cli.js spec/selenium/"
},
"Node": {
"command": "node_modules/jasmine-node/bin/jasmine-node spec/src/",
"commandx": "node --debug-brk node_modules/jasmine-node/lib/jasmine-node/cli.js spec/src/"
}
},
"launch_in_dev": ["Chrome", "Node", "Selenium"],
"test_page": "testem/testem-with-require-js.html",
"on_start": "java -jar selenium/server/selenium-server-standalone-2.31.0.jar -Dwebdriver.chrome.driver=selenium/server/chromedriver",
"before_tests": [
"node_modules/coffee-script/bin/coffee -cb spec/",
"node_modules/coffee-script/bin/coffee -cb src/"],
"src_files": [
"src/**/*.coffee",
"spec/**/*.coffee",
"public/**/*.js" ],
"on_exit": [
"rm `find ./spec -name '*.js'` -rf",
"rm `find ./src -name '*.js'` -rf"]
}