Skip to content

Commit

Permalink
Replace custom test-server with Grunt connect
Browse files Browse the repository at this point in the history
  • Loading branch information
jaylinski committed Dec 29, 2021
1 parent 03d387b commit 78e7e28
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 38 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@
"test:mocha": "grunt build && grunt test",
"test:browser": "playwright test --config tests/browser/playwright.config.js tests/browser/spec.js",
"test:integration": "grunt integration-tests",
"test:serve": "node ./tests/server.js",
"test:serve": "grunt connect:server:keepalive",
"extensive-tests-and-publish-to-aws": "npx mocha tasks/tests/ && grunt --stack extensive-tests-and-publish-to-aws",
"--- combined tasks ---": "",
"check-before-pull-request": "concurrently --kill-others-on-fail npm:lint npm:test"
Expand Down
2 changes: 1 addition & 1 deletion tests/browser/playwright.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const config = {
reporter: 'list',
webServer: {
command: 'npm run test:serve',
port: 3000,
port: 9999,
reuseExistingServer: false
}
};
Expand Down
36 changes: 0 additions & 36 deletions tests/server.js

This file was deleted.

0 comments on commit 78e7e28

Please sign in to comment.