Skip to content
This repository was archived by the owner on Feb 26, 2024. It is now read-only.

Commit f478889

Browse files
committed
refactor(test): refactor folder of test/build/ci
1 parent cc57de2 commit f478889

File tree

167 files changed

+968
-900
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

167 files changed

+968
-900
lines changed

.travis.yml

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -35,20 +35,19 @@ script:
3535
- node_modules/.bin/gulp promisetest
3636
- yarn promisefinallytest
3737
- yarn test:phantomjs-single
38-
- node_modules/.bin/karma start karma-dist-sauce-jasmine.conf.js --single-run
39-
- node_modules/.bin/karma start karma-build-sauce-mocha.conf.js --single-run
40-
- node_modules/.bin/karma start karma-dist-sauce-selenium3-jasmine.conf.js --single-run
41-
- node_modules/.bin/karma start karma-build-sauce-selenium3-mocha.conf.js --single-run
38+
- node_modules/.bin/karma start ./test/karma/ci/dist/karma-dist-sauce-jasmine.conf.js --single-run
39+
- node_modules/.bin/karma start ./test/karma/ci/build/karma-build-sauce-mocha.conf.js --single-run
40+
- node_modules/.bin/karma start ./test/karma/ci/dist/karma-dist-sauce-selenium3-jasmine.conf.js --single-run
41+
- node_modules/.bin/karma start ./test/karma/ci/build/karma-build-sauce-selenium3-mocha.conf.js --single-run
4242
- node_modules/.bin/gulp test/node
4343
- node_modules/.bin/gulp test/node -no-patch-clock
4444
- node_modules/.bin/gulp test/bluebird
45-
- node simple-server.js 2>&1> server.log&
46-
- node ./test/webdriver/test.sauce.js
45+
- node ./test/spec/webdriver/simple-server.js 2>&1> server.log&
46+
- node ./test/spec/webdriver/test.sauce.js
4747
4848
- yarn test:phantomjs-single
4949
- yarn test-mocha-jasmine-bridge-node
50-
- yarn test-mocha-jasmine-bridge-browser
51-
- node_modules/.bin/karma start karma-dist-sauce-jasmine3.conf.js --single-run
52-
- node_modules/.bin/karma start karma-build-sauce-selenium3-mocha.conf.js --single-run
50+
- node_modules/.bin/karma start ./test/karma/ci/dist/karma-dist-sauce-jasmine3.conf.js --single-run
51+
- node_modules/.bin/karma start ./test/karma/ci/build/karma-build-sauce-selenium3-mocha.conf.js --single-run
5352
- node_modules/.bin/gulp test/node
5453
- node_modules/.bin/gulp test/node -no-patch-clock

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
Implements _Zones_ for JavaScript, inspired by [Dart](https://www.dartlang.org/articles/zones/).
77

88
> If you're using zone.js via unpkg (i.e. using `https://unpkg.com/zone.js`)
9-
> and you're using any of the following libraries, make sure you import them first
9+
> and you're using any of the following libraries, make sure you import them first
1010
1111
> * 'newrelic' as it patches global.Promise before zone.js does
1212
> * 'async-listener' as it patches global.setTimeout, global.setInterval before zone.js does
@@ -36,19 +36,19 @@ See this video from ng-conf 2014 for a detailed explanation:
3636
## Standard API support
3737

3838
zone.js patched most standard web APIs (such as DOM events, `XMLHttpRequest`, ...) and nodejs APIs
39-
(`EventEmitter`, `fs`, ...), for more details, please see [STANDARD-APIS.md](STANDARD-APIS.md).
39+
(`EventEmitter`, `fs`, ...), for more details, please see [STANDARD-APIS.md](./doc/design/STANDARD-APIS.md).
4040

4141
## Nonstandard API support
4242

4343
We are adding support to some nonstandard APIs, such as MediaQuery and
44-
Notification. Please see [NON-STANDARD-APIS.md](NON-STANDARD-APIS.md) for more details.
44+
Notification. Please see [NON-STANDARD-APIS.md](./doc/design/NON-STANDARD-APIS.md) for more details.
4545

4646
## Modules
4747

4848
zone.js patches the async APIs described above, but those patches will have some overhead.
4949
Starting from zone.js v0.8.9, you can choose which web API module you want to patch.
5050
For more details, please
51-
see [MODULE.md](MODULE.md).
51+
see [MODULE.md](./doc/design/MODULE.md).
5252

5353
## Promise A+ test passed
5454
[![Promises/A+ 1.1 compliant](https://promisesaplus.com/assets/logo-small.png)](https://promisesaplus.com/)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)