forked from bitovi/funcunit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.js
More file actions
24 lines (17 loc) · 776 Bytes
/
settings.js
File metadata and controls
24 lines (17 loc) · 776 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
FuncUnit = {
// the list of browsers that selenium runs tests on
// browsers: ["*firefox", "*googlechrome"],
// the root where funcunit folder lives, used when running from commandline
// jmvcRoot: "http://localhost:3000/javascriptmvc",
// used for debugging
// the number of milliseconds between commands, "slow" is 500 ms
// speed: "slow",
// turn on if you want to exit hard with the -e flag
// failOnError: true,
// any files or directories that coverage calculations should ignore
coverageIgnore: ['*/test', "*_test.js", "*jquery.js", "*qunit.js"],
// uncomment this to ignore all JMVC directories
// coverageIgnore: ["!jmvc"],
// uncomment this to record test output in an xml format that jenkins can read
// outputFile: "testresults.xml"
}