Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update dependencies #99

Merged
merged 2 commits into from
Oct 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions deno.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@
},
"lock": false,
"imports": {
"@deno-library/progress": "jsr:@deno-library/[email protected]",
"@std/assert": "jsr:@std/assert@0.223.0",
"@std/async": "jsr:@std/async@0.223.0",
"@std/fs": "jsr:@std/fs@0.223.0",
"@std/path": "jsr:@std/path@0.223.0",
"@std/testing": "jsr:@std/testing@^0.223.0",
"@zip-js/zip-js": "jsr:@zip-js/[email protected].41"
"@deno-library/progress": "jsr:@deno-library/progress@^1.4.9",
"@std/assert": "jsr:@std/assert@^1",
"@std/async": "jsr:@std/async@^1",
"@std/fs": "jsr:@std/fs@^1",
"@std/path": "jsr:@std/path@^1",
"@std/testing": "jsr:@std/testing@^1",
"@zip-js/zip-js": "jsr:@zip-js/zip-js@^2.7.52"
},
"publish": {
"include": [
Expand Down
2 changes: 1 addition & 1 deletion tests/dialog_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "@std/assert/assert-equals";
import { assertEquals } from "@std/assert";

import { launch } from "../mod.ts";

Expand Down
3 changes: 1 addition & 2 deletions tests/element_evaluate_test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
/// <reference lib="dom" />

import { assertEquals } from "@std/assert/assert-equals";
import { assertRejects } from "@std/assert/assert-rejects";
import { assertEquals, assertRejects } from "@std/assert";

import { launch } from "../mod.ts";

Expand Down
2 changes: 1 addition & 1 deletion tests/evaluate_test.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/// <reference lib="dom" />

import { assertEquals } from "@std/assert/assert-equals";
import { assertEquals } from "@std/assert";
import { assertSnapshot } from "@std/testing/snapshot";

import { launch } from "../mod.ts";
Expand Down
2 changes: 1 addition & 1 deletion tests/event_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "@std/assert/assert-equals";
import { assertEquals } from "@std/assert";

import { launch } from "../mod.ts";

Expand Down
2 changes: 1 addition & 1 deletion tests/existing_ws_endpoint_test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { launch } from "../mod.ts";
import { assertThrows } from "@std/assert/assert-throws";
import { assertThrows } from "@std/assert";
import { assert } from "@std/assert/assert";

Deno.test("Test existing ws endpoint", async () => {
Expand Down
3 changes: 1 addition & 2 deletions tests/get_attributes_test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
/// <reference lib="dom" />

import { assertEquals } from "@std/assert/assert-equals";
import { assertExists } from "@std/assert/assert-exists";
import { assertEquals, assertExists } from "@std/assert";

import { launch } from "../mod.ts";

Expand Down
4 changes: 1 addition & 3 deletions tests/get_binary_test.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
import { assertStringIncludes } from "@std/assert/assert-string-includes";
import { assertRejects } from "@std/assert/assert-rejects";
import { assertMatch } from "@std/assert/assert-match";
import { assertMatch, assertRejects, assertStringIncludes } from "@std/assert";
import { assert } from "@std/assert/assert";
import { resolve } from "@std/path/resolve";
import { cleanCache, getBinary, launch } from "../mod.ts";
Expand Down
2 changes: 1 addition & 1 deletion tests/locator_test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// <reference lib="dom" />
import { assertEquals } from "jsr:@std/assert@0.223.0/assert-equals";
import { assertEquals } from "@std/assert";
import { launch } from "../mod.ts";
import * as path from "@std/path";

Expand Down
2 changes: 1 addition & 1 deletion tests/navigation_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertRejects } from "@std/assert/assert-rejects";
import { assertRejects } from "@std/assert";
import { launch } from "../mod.ts";

Deno.test("Page - back and forth navigation works", async () => {
Expand Down
2 changes: 1 addition & 1 deletion tests/query_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertExists } from "@std/assert/assert-exists";
import { assertExists } from "@std/assert";
import { launch } from "../mod.ts";

Deno.test("Set content", async () => {
Expand Down
2 changes: 1 addition & 1 deletion tests/resource_test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { type Browser, launch, type Page } from "../mod.ts";
import { assertRejects } from "@std/assert/assert-rejects";
import { assertRejects } from "@std/assert";

Deno.test("Page - close with 'using' keyword", async () => {
const browser = await launch();
Expand Down
2 changes: 1 addition & 1 deletion tests/sandbox_test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { getDefaultCachePath, launch } from "../mod.ts";
import { assertStrictEquals } from "@std/assert/assert-strict-equals";
import { assertStrictEquals } from "@std/assert";
import { fromFileUrl } from "@std/path/from-file-url";
import { assert } from "@std/assert/assert";

Expand Down
2 changes: 1 addition & 1 deletion tests/set_content_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertStrictEquals } from "@std/assert/assert-strict-equals";
import { assertStrictEquals } from "@std/assert";
import { launch } from "../mod.ts";

Deno.test("Set content", async () => {
Expand Down
2 changes: 1 addition & 1 deletion tests/wait_test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { assertSnapshot } from "@std/testing/snapshot";
import { assertRejects } from "@std/assert/assert-rejects";
import { assertRejects } from "@std/assert";

import { launch } from "../mod.ts";

Expand Down