Skip to content

Commit

Permalink
Only use testem for running smoke test in browser
Browse files Browse the repository at this point in the history
  • Loading branch information
mrloop committed Oct 30, 2024
1 parent 69a8eb1 commit 253978f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 10 deletions.
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,10 @@
"module": "main.js",
"types": "./index.d.ts",
"scripts": {
"test": "npm run lint && npm run test:js",
"test:js": "testem ci",
"test": "npm run lint && npm run test:js && npm run test:smoke",
"test:smoke": "testem ci",
"test:js": "qunit",
"dev": "qunit --watch",
"lint": "eslint index.js"
},
"dependencies": {
Expand Down
10 changes: 2 additions & 8 deletions testem.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,8 @@
{
"framework": "qunit",
"test_page": "test/index.html",
"launch_in_dev": ["qunit", "Firefox"],
"launch_in_ci": ["qunit", "Firefox"],
"launchers": {
"qunit": {
"command": "qunit test/retry.js",
"protocol": "tap"
}
},
"launch_in_dev": ["Firefox"],
"launch_in_ci": ["Firefox"],
"browser_args": {
"Firefox": {
"ci": [
Expand Down

0 comments on commit 253978f

Please sign in to comment.