Skip to content

Commit

Permalink
chore(http): run http node tests in CI again
Browse files Browse the repository at this point in the history
ISSUES CLOSED: cyclejs#865
  • Loading branch information
jvanbruegge authored and geraud.henrion committed Feb 24, 2021
1 parent 34475d3 commit 0ba0eec
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
3 changes: 2 additions & 1 deletion http/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@
"karma-mocha": "^1.3.0",
"karma-typescript": "^3.0.13",
"mocha": "^5.2.0",
"symbol-observable": "^1.2.0",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "3.2.x",
Expand All @@ -66,7 +67,7 @@
"test-browser": "pnpm run start-test-support-server && karma start && pnpm run stop-test-support-server",
"start-test-support-server": "PORT=8070 ts-node test/support/run-server.ts &",
"stop-test-support-server": "kill $(ps aux | grep cyclejs | grep support | grep server | grep -v grep | awk '{ print $2 }') || true",
"test": "pnpm run test-browser",
"test": "pnpm run test-node && pnpm run test-browser",
"test-ci": "CI=true pnpm test",
"prepublishOnly": "pnpm run build && pnpm run test"
}
Expand Down
2 changes: 2 additions & 0 deletions http/shrinkwrap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ devDependencies:
karma-mocha: 1.3.0
karma-typescript: 3.0.13
mocha: 5.2.0
symbol-observable: 1.2.0
ts-node: 7.0.1
tslint: 5.11.0
typescript: 3.2.1
Expand Down Expand Up @@ -3848,6 +3849,7 @@ specifiers:
most: ^1.7.3
rxjs: ^6.3.3
superagent: ^3.8.3
symbol-observable: ^1.2.0
ts-node: ^7.0.1
tslint: ^5.11.0
typescript: 3.2.x
Expand Down
1 change: 1 addition & 0 deletions http/test/node.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import 'symbol-observable'; //tslint:disable-line
import * as assert from 'assert';
import {Observable, of} from 'rxjs';
import {mergeAll} from 'rxjs/operators';
Expand Down

0 comments on commit 0ba0eec

Please sign in to comment.