Skip to content

Commit

Permalink
Remove smoke-test scripts.
Browse files Browse the repository at this point in the history
  • Loading branch information
rwjblue committed Oct 29, 2020
1 parent 6dd5973 commit 86ad8d0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Expand Up @@ -151,7 +151,8 @@ jobs:
- name: install smoke-test-app deps
run: npm install
working-directory: smoke-test-app
- run: npm run smoke-test
- run: ./smoke-test.sh
working-directory: smoke-test-app

yarn-smoke-tests:
strategy:
Expand All @@ -177,4 +178,5 @@ jobs:
- name: install smoke-test-app deps
run: yarn install
working-directory: smoke-test-app
- run: yarn smoke-test-yarn
- run: ./smoke-test-yarn.sh
working-directory: smoke-test-app
3 changes: 0 additions & 3 deletions package.json
Expand Up @@ -22,15 +22,12 @@
"test": "tests"
},
"scripts": {
"all-test": "npm run-script node-test && npm run-script smoke-test",
"build": "ember build",
"lint": "eslint lib test",
"lint:hbs": "ember-template-lint .",
"lint:js": "eslint .",
"node-test": "mocha test/**/*.js",
"node-test-with-coverage": "nyc --reporter lcov npm run-script node-test && node_modules/.bin/codecov",
"smoke-test": "cd smoke-test-app && ./smoke-test.sh",
"smoke-test-yarn": "cd smoke-test-app && ./smoke-test-yarn.sh",
"start": "ember serve",
"test": "npm run-script lint && npm run-script node-test"
},
Expand Down

0 comments on commit 86ad8d0

Please sign in to comment.