Skip to content
This repository has been archived by the owner on Jun 18, 2024. It is now read-only.

Commit

Permalink
Fix an async ops leakage and upgrade Deno version
Browse files Browse the repository at this point in the history
  • Loading branch information
hasundue committed Sep 16, 2022
1 parent 15eebd0 commit 6fcaefa
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Setup Deno
uses: denoland/setup-deno@v1
with:
deno-version: v1.24.3
deno-version: v1.25.3

- name: Format
run: deno fmt --check
Expand Down
8 changes: 4 additions & 4 deletions test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ Deno.test("E2E test", async (t) => {
assertEquals(await page.location(), "https://www.active-connector.com/");
});

await page.location(index);

await t.step("input is empty", async () => {
await page.location(index);

const input = await page.querySelector("input");
assertEquals(await input.value(), "");
});
Expand Down Expand Up @@ -63,9 +63,9 @@ Deno.test("E2E test", async (t) => {
assertEquals(body, `Job "${name}" is not available`);
});

await page.location(index);

await t.step("input 'engineer' and click the button", async () => {
await page.location(index);

const input = await page.querySelector("input");
await input.value("engineer");

Expand Down

0 comments on commit 6fcaefa

Please sign in to comment.