Skip to content

Commit 7a86432

Browse files
committed
(#17) Added window integration tests to CI pipelines
1 parent c790569 commit 7a86432

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

.travis.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,10 @@ script:
4040
- cd test
4141
- npm ci
4242
- npm test
43-
- cd ..
43+
- cd window-integration-tests
44+
- npm ci
45+
- npm test
46+
- cd ../..
4447

4548
before_deploy:
4649
- echo "//registry.npmjs.org/:_authToken=\${NPM_TOKEN}" >> $HOME/.npmrc 2> /dev/null

appveyor.yml

+6-3
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,12 @@ test_script:
3434
# run tests
3535
- cd test
3636
- npm ci
37-
- npm test test
38-
- npm test run test:it
39-
- cd ..
37+
- npm test
38+
- npm run test:it
39+
- cd window-integration-tests
40+
- npm ci
41+
- npm test
42+
- cd ../..
4043

4144
on_success:
4245
- IF defined APPVEYOR_REPO_TAG_NAME npm publish

0 commit comments

Comments
 (0)