Tidy test scripts.

This commit is contained in:
orangemug 2020-02-21 08:06:01 +00:00
parent 5710edcff7
commit 0d35106cc8
3 changed files with 7 additions and 7 deletions

View file

@ -18,8 +18,8 @@ templates:
- run: mkdir -p /tmp/artifacts/logs - run: mkdir -p /tmp/artifacts/logs
- run: npm run build - run: npm run build
- run: npm run lint - run: npm run lint-js
- run: npm run lint-styles - run: npm run lint-css
- store_artifacts: - store_artifacts:
path: /tmp/artifacts path: /tmp/artifacts
destination: /artifacts destination: /artifacts
@ -42,8 +42,8 @@ templates:
- run: mkdir -p /tmp/artifacts/logs - run: mkdir -p /tmp/artifacts/logs
- run: npm run build - run: npm run build
- run: npm run profiling-build - run: npm run profiling-build
- run: npm run lint - run: npm run lint-js
- run: npm run lint-styles - run: npm run lint-css
- run: DOCKER_HOST=localhost npm test - run: DOCKER_HOST=localhost npm test
- run: ./node_modules/.bin/istanbul report --include /tmp/artifacts/coverage/coverage.json --dir /tmp/artifacts/coverage html lcov - run: ./node_modules/.bin/istanbul report --include /tmp/artifacts/coverage/coverage.json --dir /tmp/artifacts/coverage html lcov
- store_artifacts: - store_artifacts:

View file

@ -118,7 +118,6 @@ exports.config = {
// Services take over a specific job you don't want to take care of. They enhance // Services take over a specific job you don't want to take care of. They enhance
// your test setup with almost no effort. Unlike plugins, they don't add new // your test setup with almost no effort. Unlike plugins, they don't add new
// commands. Instead, they hook themselves up into the test process. // commands. Instead, they hook themselves up into the test process.
services: ['selenium-standalone'],
// //
// Framework you want to run your specs with. // Framework you want to run your specs with.
// The following are supported: Mocha, Jasmine, and Cucumber // The following are supported: Mocha, Jasmine, and Cucumber

View file

@ -10,8 +10,9 @@
"test": "cross-env NODE_ENV=test wdio config/wdio.conf.js", "test": "cross-env NODE_ENV=test wdio config/wdio.conf.js",
"test-watch": "cross-env NODE_ENV=test wdio config/wdio.conf.js --watch", "test-watch": "cross-env NODE_ENV=test wdio config/wdio.conf.js --watch",
"start": "webpack-dev-server --progress --profile --colors --config config/webpack.config.js", "start": "webpack-dev-server --progress --profile --colors --config config/webpack.config.js",
"lint": "eslint --ext js --ext jsx src test", "lint-js": "eslint --ext js --ext jsx src test",
"lint-styles": "stylelint \"src/styles/*.scss\"" "lint-css": "stylelint \"src/styles/*.scss\"",
"lint": "npm run lint-js && npm run lint-css"
}, },
"repository": { "repository": {
"type": "git", "type": "git",