-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
upgraded some dependencies, introduced makefile to execute browser-st…
…ack tests sequentially
- Loading branch information
Showing
3 changed files
with
37 additions
and
11 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
.PHONY: test | ||
|
||
test: | ||
mocha | ||
karma start | ||
|
||
test-all: | ||
export BM_TIMEOUT=5000 | ||
mocha | ||
karma start --single-run --browsers browserstack-windows-chrome | ||
karma start --single-run --browsers browserstack-osx-chrome | ||
karma start --single-run --browsers browserstack-firefox | ||
karma start --single-run --browsers browserstack-safari | ||
karma start --single-run --browsers browserstack-safari-ios | ||
karma start --single-run --browsers browserstack-edge | ||
karma start --single-run --browsers browserstack-ie11 | ||
karma start --single-run --browsers browserstack-ie10 | ||
karma start --single-run --browsers browserstack-ie9 |
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
"description": "reliable dom testing", | ||
"main": "index.js", | ||
"scripts": { | ||
"test": "mocha && karma start --single-run" | ||
"test": "make test" | ||
}, | ||
"author": "Tim Macfarlane <[email protected]>", | ||
"license": "MIT", | ||
|
@@ -14,18 +14,18 @@ | |
"chai-as-promised": "6.0.0", | ||
"detect-node": "^2.0.3", | ||
"hyperdom": "^0.2.0", | ||
"karma": "1.3.0", | ||
"karma": "1.5.0", | ||
"karma-browserify": "5.1.0", | ||
"karma-browserstack-launcher": "1.1.1", | ||
"karma-chrome-launcher": "2.0.0", | ||
"karma-cli": "1.0.1", | ||
"karma-env-preprocessor": "0.1.1", | ||
"karma-firefox-launcher": "^1.0.0", | ||
"karma-ievms": "0.1.0", | ||
"karma-mocha": "1.2.0", | ||
"karma-mocha": "1.3.0", | ||
"karma-mocha-reporter": "2.2.0", | ||
"lie": "^3.0.1", | ||
"mocha": "3.1.2", | ||
"lie": "3.1.1", | ||
"mocha": "3.2.0", | ||
"vdom-query": "https://github.com/featurist/vdom-query", | ||
"virtual-dom": "^2.1.1", | ||
"watchify": "^3.7.0" | ||
|