Skip to content

Commit

Permalink
comment out windows for now
Browse files Browse the repository at this point in the history
  • Loading branch information
ebebbington committed Apr 28, 2024
1 parent d9a6115 commit 86a3216
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
tests:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}

steps:
Expand All @@ -53,8 +53,6 @@ jobs:
- name: Run Integration Tests
run: |
deno test -A tests/integration --config tsconfig.json --no-check=remote
- name: Run Unit Tests
run: |
Expand Down
4 changes: 2 additions & 2 deletions src/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -179,8 +179,8 @@ export class Client {

// Close browser process (also closes the ws endpoint, which in turn closes all sockets)
if (this.#browser_process) {
this.#browser_process.stderr!.cancel();
this.#browser_process.stdout!.cancel();
this.#browser_process.stderr.cancel();
this.#browser_process.stdout.cancel();
this.#browser_process.kill();
await this.#browser_process.status;
} else {
Expand Down

0 comments on commit 86a3216

Please sign in to comment.