This repository has been archived by the owner on Jul 30, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fa0acb5
commit 208b419
Showing
63 changed files
with
4,440 additions
and
4,336 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,125 @@ | ||
{ | ||
"environments": [ | ||
{ "browserName": "node" } | ||
], | ||
|
||
"suites": [ | ||
"./_build/tests/unit/all.js" | ||
], | ||
|
||
"functionalSuites": [ | ||
"./_build/tests/functional/all.js" | ||
], | ||
|
||
"plugins": [ | ||
"./_build/tests/plugins/echo-service.js" | ||
], | ||
|
||
"browser": { | ||
"loader": { | ||
"script": "dojo2", | ||
"options": { | ||
"packages": [ | ||
{ "name": "src", "location": "_build/src" }, | ||
{ "name": "tests", "location": "_build/tests" }, | ||
{ "name": "@dojo", "location": "node_modules/@dojo" }, | ||
{ "name": "sinon", "location": "node_modules/sinon/pkg", "main": "sinon" } | ||
] | ||
} | ||
}, | ||
|
||
"suites+": [ | ||
"./_build/tests/unit/all-browser.js" | ||
] | ||
}, | ||
|
||
"node": { | ||
"suites+": [ | ||
"./_build/tests/unit/all-node.js" | ||
] | ||
}, | ||
|
||
"configs": { | ||
"coverage": { | ||
"coverage": [ | ||
"./_build/src/**/*.js" | ||
] | ||
}, | ||
|
||
"remoteCapabilities": { | ||
"capabilities": { | ||
"project": "Dojo 2", | ||
"name": "@dojo/core", | ||
"fixSessionCapabilities": false | ||
} | ||
}, | ||
|
||
"browserstack": { | ||
"extends": [ "coverage", "remoteCapabilities" ], | ||
|
||
"tunnel": "browserstack", | ||
"capabilities+": { | ||
"browserstack.debug": false | ||
}, | ||
|
||
"environments+": [ | ||
{ "browserName": "internet explorer", "version": "11" }, | ||
{ "browserName": "edge" }, | ||
{ "browserName": "firefox", "platform": "WINDOWS" }, | ||
{ "browserName": "chrome", "platform": "WINDOWS" } | ||
], | ||
|
||
"maxConcurrency": 5 | ||
}, | ||
|
||
"node-loader": { | ||
"extends": [ "coverage" ], | ||
|
||
"node": { | ||
"loader": { | ||
"script": "dojo2", | ||
"options": { | ||
"packages": [ | ||
{ "name": "src", "location": "_build/src" }, | ||
{ "name": "tests", "location": "_build/tests" }, | ||
{ "name": "@dojo", "location": "node_modules/@dojo" }, | ||
{ "name": "sinon", "location": "node_modules/sinon/pkg", "main": "sinon" } | ||
] | ||
} | ||
}, | ||
"suites+": [ | ||
"./_build/tests/unit/all-node-loader.js" | ||
] | ||
} | ||
}, | ||
|
||
"local": { | ||
"extends": [ "coverage", "remoteCapabilities" ], | ||
|
||
"tunnel": "selenium", | ||
"tunnelOptions": { | ||
"hostname": "localhost", | ||
"port": 4444 | ||
}, | ||
|
||
"environments+": [ | ||
{ "browserName": "chrome" } | ||
] | ||
}, | ||
|
||
"saucelabs": { | ||
"extends": [ "coverage", "remoteCapabilities" ], | ||
|
||
"tunnel": "saucelabs", | ||
"tunnelOptions": {}, | ||
|
||
"defaultTimeout": 10000, | ||
"environments+": [ | ||
{ "browserName": "internet explorer", "version": [ "11.0" ], "platform": "Windows 7" }, | ||
{ "browserName": "firefox", "version": "43", "platform": "Windows 10" }, | ||
{ "browserName": "chrome", "platform": "Windows 10" } | ||
], | ||
"maxConcurrency": 4 | ||
} | ||
} | ||
} |
Oops, something went wrong.