We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e4bbff commit 003b77eCopy full SHA for 003b77e
.github/workflows/stainless.yml
@@ -16,7 +16,7 @@ jobs:
16
yarn install
17
- name: Run linter
18
run: |
19
- yarn lint packages/cli
+ yarn lint
20
- name: Run tests
21
22
- yarn test packages/cli
+ yarn test
packages/http-server/src/__tests__/body-params-validation.spec.ts
@@ -26,7 +26,7 @@ async function instantiatePrism(operations: IHttpOperation[]) {
26
});
27
28
// 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');
+ const address = await server.listen(0, '127.0.0.1');
30
31
return {
32
close: server.close.bind(server),
0 commit comments