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

Commit 740cdf4

Browse files
axelssonHakanstoffeastrom
authored andcommitted
Fix app veyor (#323)
* Adding bootstrap step * Fix for npm run command * Moving node version printout * Disable ci for lerna * Adding chrome tests * Adding protractor tests * Change path to windows * Fixing path for web-driver * New path to webdriver * Fix path * Ignore webdriver (use global) * Trying to update chrome * Use latest chrome for all steps (install early) and test pppeteer * Adding lint
1 parent b9e85d3 commit 740cdf4

1 file changed

Lines changed: 12 additions & 4 deletions

File tree

appveyor.yml

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,26 @@ environment:
66

77
# Install scripts. (runs after repo cloning)
88
install:
9+
# Install latest chrome
10+
- choco install googlechrome
911
# Get the latest stable version of Node.js or io.js
1012
- ps: Install-Product node $env:nodejs_version
13+
# Output useful info for debugging.
14+
- node --version
15+
- npm --version
1116
# install modules
1217
- npm install
18+
- npm run bootstrap -- --no-ci
1319

1420
# Post-install test scripts.
1521
test_script:
16-
# Output useful info for debugging.
17-
- node --version
18-
- npm --version
22+
- npm run lint
1923
# run tests
20-
- npm test
24+
- npm run test:node
25+
- npm run test:chrome
26+
- npx webdriver-manager update --gecko false
27+
- npm run test:protractor -- --directConnect
28+
- npm run test:puppeteer
2129

2230
# Don't actually build.
2331
build: off

0 commit comments

Comments
 (0)