Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
whi-tw committed Mar 20, 2024
1 parent 73cda5e commit e1897bd
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/test-sidecar.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ jobs:
- name: Install dependencies
run: yarn install
- name: poke docker
run: docker ps
run: |
docker --version
docker ps
- name: Run sidecar tests
run: yarn test:sidecar
10 changes: 5 additions & 5 deletions test/basic-auth-sidecar/basic-auth-sidecar.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,11 +99,11 @@ describe("BasicAuthSidecar", () => {
.forResponsePredicate((response) => response === "OK"),
])
)
.withLogConsumer((stream) => {
stream.on("data", (line) => console.log(line));
stream.on("err", (line) => console.error(line));
stream.on("end", () => console.log("Stream closed"));
})
// .withLogConsumer((stream) => {
// stream.on("data", (line) => console.log(line));
// stream.on("err", (line) => console.error(line));
// stream.on("end", () => console.log("Stream closed"));
// })
.start();

sidecarRequester = chai
Expand Down

0 comments on commit e1897bd

Please sign in to comment.