Skip to content

Commit 003b77e

Browse files
committed
add all tests to CI
1 parent 1e4bbff commit 003b77e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/stainless.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
yarn install
1717
- name: Run linter
1818
run: |
19-
yarn lint packages/cli
19+
yarn lint
2020
- name: Run tests
2121
run: |
22-
yarn test packages/cli
22+
yarn test

packages/http-server/src/__tests__/body-params-validation.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ async function instantiatePrism(operations: IHttpOperation[]) {
2626
});
2727

2828
// be careful with selecting the port: it can't be the same in different suite because test suites run in parallel
29-
const address = await server.listen(30000, '127.0.0.1');
29+
const address = await server.listen(0, '127.0.0.1');
3030

3131
return {
3232
close: server.close.bind(server),

0 commit comments

Comments
 (0)