Skip to content

Commit

Permalink
testing: Use deno/std 0.220.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ije committed Mar 15, 2024
1 parent cc99cb0 commit 18c1be2
Show file tree
Hide file tree
Showing 125 changed files with 143 additions and 135 deletions.
2 changes: 1 addition & 1 deletion test/ajv/ajv.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assert } from "https://deno.land/std@0.210.0/testing/asserts.ts";
import { assert } from "https://deno.land/std@0.220.0/assert/mod.ts";

import Ajv from "http://localhost:8080/[email protected]";
import addFormats from "http://localhost:8080/[email protected][email protected]";
Expand Down
2 changes: 1 addition & 1 deletion test/axios/axios_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/std@0.210.0/testing/asserts.ts";
import { assertEquals } from "https://deno.land/std@0.220.0/assert/mod.ts";

import axios from "http://localhost:8080/[email protected]";

Expand Down
2 changes: 1 addition & 1 deletion test/babel/babel.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertStringIncludes } from "https://deno.land/std@0.210.0/testing/asserts.ts";
import { assertStringIncludes } from "https://deno.land/std@0.220.0/assert/mod.ts";

import { transformAsync } from "http://localhost:8080/@babel/[email protected]";
import babelPresetTS from "http://localhost:8080/@babel/[email protected]";
Expand Down
2 changes: 1 addition & 1 deletion test/baseui/baseui.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/std@0.210.0/testing/asserts.ts";
import { assertEquals } from "https://deno.land/std@0.220.0/assert/mod.ts";

import { createTheme } from "http://localhost:8080/[email protected]";

Expand Down
2 changes: 1 addition & 1 deletion test/build-api/build-api.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals, assertStringIncludes } from "https://deno.land/std@0.210.0/testing/asserts.ts";
import { assertEquals, assertStringIncludes } from "https://deno.land/std@0.220.0/assert/mod.ts";

import { build, esm } from "http://localhost:8080/build";

Expand Down
12 changes: 3 additions & 9 deletions test/bundle-strategy/bundle-strategy.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertStringIncludes } from "https://deno.land/std@0.210.0/testing/asserts.ts";
import { assertStringIncludes } from "https://deno.land/std@0.220.0/assert/mod.ts";

Deno.test("bundle deps", async () => {
const code = await fetch(
Expand All @@ -14,12 +14,6 @@ Deno.test("no bundle", async () => {
const code = await fetch(
`http://localhost:8080/@pyscript/[email protected]/es2022/dist/py-terminal-XWbSa71s.nobundle.js`,
).then((res) => res.text());
assertStringIncludes(
code,
`/@pyscript/[email protected]/es2022/dist/core.nobundle.js`,
);
assertStringIncludes(
code,
`/@pyscript/[email protected]/es2022/dist/error-96hMSEw8.nobundle.js`,
);
assertStringIncludes(code, "./core.nobundle.js");
assertStringIncludes(code, "./error-96hMSEw8.nobundle.js");
});
2 changes: 1 addition & 1 deletion test/deno-std-version/deno-std-version.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals, assertStringIncludes } from "https://deno.land/std@0.210.0/testing/asserts.ts";
import { assertEquals, assertStringIncludes } from "https://deno.land/std@0.220.0/assert/mod.ts";

Deno.test("`?deno-std` query", async () => {
const res = await fetch(
Expand Down
2 changes: 1 addition & 1 deletion test/dev-mode/dev-mode.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertStringIncludes } from "https://deno.land/std@0.210.0/testing/asserts.ts";
import { assertStringIncludes } from "https://deno.land/std@0.220.0/assert/mod.ts";

Deno.test("support exports `development` condition", async () => {
const code = await fetch("http://localhost:8080/[email protected]/es2022/react.development.mjs").then((
Expand Down
15 changes: 15 additions & 0 deletions test/dynamic-import/dynamic-import.test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import { assertEquals, assertStringIncludes } from "https://deno.land/[email protected]/assert/mod.ts";

Deno.test("dynamic-import", async () => {
const res = await fetch("http://localhost:8080/[email protected]/lsp/html/setup?target=es2022");
res.body?.cancel();
assertEquals(res.status, 200);

const esmId = res.headers.get("x-esm-id");
const res2 = await fetch(`http://localhost:8080/${esmId}`);
assertEquals(res.status, 200);

const code = await res2.text();
assertStringIncludes(code, `from"../language-features.js"`);
assertStringIncludes(code, `import("./worker.js")`);
});
2 changes: 1 addition & 1 deletion test/esbuild/esbuild.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/std@0.210.0/testing/asserts.ts";
import { assertEquals } from "https://deno.land/std@0.220.0/assert/mod.ts";

import esbuild, { version } from "http://localhost:8080/[email protected]";

Expand Down
2 changes: 1 addition & 1 deletion test/esm-compiler/esm-compiler.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals, assertStringIncludes } from "https://deno.land/std@0.210.0/testing/asserts.ts";
import { assertEquals, assertStringIncludes } from "https://deno.land/std@0.220.0/assert/mod.ts";
import { Buffer } from "node:buffer";

import init from "http://localhost:8080/[email protected]";
Expand Down
2 changes: 1 addition & 1 deletion test/esm-worker/esm-worker.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { join } from "https://deno.land/[email protected]/path/mod.ts";
import { assert, assertEquals, assertStringIncludes } from "https://deno.land/std@0.210.0/testing/asserts.ts";
import { assert, assertEquals, assertStringIncludes } from "https://deno.land/std@0.220.0/assert/mod.ts";

const env = { ESM_ORIGIN: "http://localhost:8080" };
const workerOrigin = "http://localhost:8081";
Expand Down
2 changes: 1 addition & 1 deletion test/export-all-members/rc-utils.test.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertExists } from "https://deno.land/std@0.210.0/testing/asserts.ts";
import { assertExists } from "https://deno.land/std@0.220.0/assert/mod.ts";

import * as dynamicCSS from "http://localhost:8080/[email protected]/es/Dom/dynamicCSS.js";

Expand Down
2 changes: 1 addition & 1 deletion test/express/express.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/std@0.210.0/testing/asserts.ts";
import { assertEquals } from "https://deno.land/std@0.220.0/assert/mod.ts";

import express, { type Request, type Response } from "http://localhost:8080/express@4";

Expand Down
2 changes: 1 addition & 1 deletion test/external-all/preact.test.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assert } from "https://deno.land/std@0.210.0/testing/asserts.ts";
import { assert } from "https://deno.land/std@0.220.0/assert/mod.ts";

import { h } from "preact";
import render from "preact-render-to-string";
Expand Down
2 changes: 1 addition & 1 deletion test/external-bundle/ajv.test.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assert } from "https://deno.land/std@0.210.0/testing/asserts.ts";
import { assert } from "https://deno.land/std@0.220.0/assert/mod.ts";

import * as ajv from "http://localhost:8080/[email protected]?bundle&external=fast-deep-equal";

Expand Down
2 changes: 1 addition & 1 deletion test/external-nodejs-internal-modules/express.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals, assertStringIncludes } from "https://deno.land/std@0.210.0/testing/asserts.ts";
import { assertEquals, assertStringIncludes } from "https://deno.land/std@0.220.0/assert/mod.ts";

Deno.test("external-nodejs-internal-modules", async () => {
const res = await fetch("http://localhost:8080/[email protected]/es2022/cheerio.mjs");
Expand Down
2 changes: 1 addition & 1 deletion test/external/preact.test.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assert } from "https://deno.land/std@0.210.0/testing/asserts.ts";
import { assert } from "https://deno.land/std@0.220.0/assert/mod.ts";

import { h } from "preact";
import render from "preact-render-to-string";
Expand Down
2 changes: 1 addition & 1 deletion test/fix-url/fix-url.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/std@0.210.0/testing/asserts.ts";
import { assertEquals } from "https://deno.land/std@0.220.0/assert/mod.ts";

Deno.test("Fix wasm URL", async () => {
const res = await fetch(
Expand Down
2 changes: 1 addition & 1 deletion test/github-assets/github-assets.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals, assertStringIncludes } from "https://deno.land/std@0.210.0/testing/asserts.ts";
import { assertEquals, assertStringIncludes } from "https://deno.land/std@0.220.0/assert/mod.ts";

Deno.test("github assets", async () => {
const res = await fetch(
Expand Down
7 changes: 3 additions & 4 deletions test/github-module/github-module.test.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
import { assertEquals } from "https://deno.land/std@0.210.0/testing/asserts.ts";
import { assertExists } from "https://deno.land/std@0.220.0/assert/mod.ts";

import sfMeta from "http://localhost:8080/gh/superfluid-finance/metadata";
import * as tslib from "http://localhost:8080/gh/microsoft/tslib";

Deno.test("github module", async () => {
const network = sfMeta.getNetworkByName("eth-goerli");
assertEquals(network?.name, "eth-goerli");
assertExists(tslib.__await);
});
2 changes: 1 addition & 1 deletion test/graphql/graphql.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/std@0.210.0/testing/asserts.ts";
import { assertEquals } from "https://deno.land/std@0.220.0/assert/mod.ts";

import { graphql, GraphQLObjectType, GraphQLSchema, GraphQLString } from "http://localhost:8080/[email protected]";
import * as graphqlImpl from "http://localhost:8080/[email protected]/graphql";
Expand Down
2 changes: 1 addition & 1 deletion test/html-to-react/react.test.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assert } from "https://deno.land/std@0.210.0/testing/asserts.ts";
import { assert } from "https://deno.land/std@0.220.0/assert/mod.ts";

import React from "http://localhost:8080/[email protected]";
import { renderToString } from "http://localhost:8080/[email protected]/server";
Expand Down
2 changes: 1 addition & 1 deletion test/io-ts/io-ts.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assert } from "https://deno.land/std@0.210.0/testing/asserts.ts";
import { assert } from "https://deno.land/std@0.220.0/assert/mod.ts";

import * as t from "http://localhost:8080/io-ts";
import { isRight } from "http://localhost:8080/fp-ts/lib/Either";
Expand Down
2 changes: 1 addition & 1 deletion test/ipfs-dependencies/ipfs-dependencies.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/std@0.210.0/testing/asserts.ts";
import { assertEquals } from "https://deno.land/std@0.220.0/assert/mod.ts";

import { BigInteger } from "http://localhost:8080/[email protected]";
import { Netmask } from "http://localhost:8080/[email protected]";
Expand Down
2 changes: 1 addition & 1 deletion test/issue-165/issue-165.test.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// fixes https://github.com/esm-dev/esm.sh/issues/165

import { assertEquals, assertStringIncludes } from "https://deno.land/std@0.210.0/testing/asserts.ts";
import { assertEquals, assertStringIncludes } from "https://deno.land/std@0.220.0/assert/mod.ts";

Deno.test("issue #165", async () => {
const res = await fetch("http://localhost:8080/@react-three/[email protected][email protected]");
Expand Down
2 changes: 1 addition & 1 deletion test/issue-362/issue-362.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/std@0.210.0/testing/asserts.ts";
import { assertEquals } from "https://deno.land/std@0.220.0/assert/mod.ts";

import { codes } from "http://localhost:8080/[email protected]";
import { loadWASM } from "http://localhost:8080/[email protected]";
Expand Down
2 changes: 1 addition & 1 deletion test/issue-363/issue-363.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/std@0.210.0/testing/asserts.ts";
import { assertEquals } from "https://deno.land/std@0.220.0/assert/mod.ts";

import { fs } from "http://localhost:8080/memfs";

Expand Down
2 changes: 1 addition & 1 deletion test/issue-381/issue-381.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/std@0.210.0/testing/asserts.ts";
import { assertEquals } from "https://deno.land/std@0.220.0/assert/mod.ts";

import ws4 from "http://localhost:8080/isomorphic-ws@4";
import ws5 from "http://localhost:8080/isomorphic-ws@5";
Expand Down
2 changes: 1 addition & 1 deletion test/issue-389/issue-389.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/std@0.210.0/testing/asserts.ts";
import { assertEquals } from "https://deno.land/std@0.220.0/assert/mod.ts";

import { Value } from "http://localhost:8080/@sinclair/[email protected]/value";

Expand Down
2 changes: 1 addition & 1 deletion test/issue-392/issue-392.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/std@0.210.0/testing/asserts.ts";
import { assertEquals } from "https://deno.land/std@0.220.0/assert/mod.ts";

import mod from "http://localhost:8080/@rollup/[email protected]";

Expand Down
2 changes: 1 addition & 1 deletion test/issue-400/issue-400.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/std@0.210.0/testing/asserts.ts";
import { assertEquals } from "https://deno.land/std@0.220.0/assert/mod.ts";

import chalk from "http://localhost:8080/[email protected]";

Expand Down
2 changes: 1 addition & 1 deletion test/issue-410/issue-410.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/std@0.210.0/testing/asserts.ts";
import { assertEquals } from "https://deno.land/std@0.220.0/assert/mod.ts";

import Conf from "http://localhost:8080/[email protected]";

Expand Down
2 changes: 1 addition & 1 deletion test/issue-411/issue-411.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertStringIncludes } from "https://deno.land/std@0.210.0/testing/asserts.ts";
import { assertStringIncludes } from "https://deno.land/std@0.220.0/assert/mod.ts";

import postcss from "http://localhost:8080/[email protected]";
import nested from "http://localhost:8080/[email protected][email protected]";
Expand Down
2 changes: 1 addition & 1 deletion test/issue-417/issue-417.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/std@0.210.0/testing/asserts.ts";
import { assertEquals } from "https://deno.land/std@0.220.0/assert/mod.ts";

import { ReadableStream } from "http://localhost:8080/web-streams-ponyfill";

Expand Down
2 changes: 1 addition & 1 deletion test/issue-420/issue-420.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertStringIncludes } from "https://deno.land/std@0.210.0/testing/asserts.ts";
import { assertStringIncludes } from "https://deno.land/std@0.220.0/assert/mod.ts";

import { html } from "http://localhost:8080/htm/[email protected]";
import { useState } from "http://localhost:8080/[email protected]/hooks";
Expand Down
2 changes: 1 addition & 1 deletion test/issue-422/issue-422.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/std@0.210.0/testing/asserts.ts";
import { assertEquals } from "https://deno.land/std@0.220.0/assert/mod.ts";

import * as nfn from "http://localhost:8080/node-fetch-native";

Expand Down
2 changes: 1 addition & 1 deletion test/issue-454/issue-454.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/std@0.210.0/testing/asserts.ts";
import { assertEquals } from "https://deno.land/std@0.220.0/assert/mod.ts";

import { Map } from "http://localhost:8080/[email protected]";

Expand Down
2 changes: 1 addition & 1 deletion test/issue-464/issue-464.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/std@0.210.0/testing/asserts.ts";
import { assertEquals } from "https://deno.land/std@0.220.0/assert/mod.ts";

// shim document.createTreeWalker and HTMLElement class
class HTMLElement {}
Expand Down
2 changes: 1 addition & 1 deletion test/issue-483/issue-483.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/std@0.210.0/testing/asserts.ts";
import { assertEquals } from "https://deno.land/std@0.220.0/assert/mod.ts";

import { useDrag } from "http://localhost:8080/@use-gesture/[email protected]";

Expand Down
2 changes: 1 addition & 1 deletion test/issue-497/issue-497.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/std@0.210.0/testing/asserts.ts";
import { assertEquals } from "https://deno.land/std@0.220.0/assert/mod.ts";

import wretch from "http://localhost:8080/[email protected]";

Expand Down
2 changes: 1 addition & 1 deletion test/issue-502/issue-502.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/std@0.210.0/testing/asserts.ts";
import { assertEquals } from "https://deno.land/std@0.220.0/assert/mod.ts";

import d from "http://localhost:8080/[email protected]";

Expand Down
2 changes: 1 addition & 1 deletion test/issue-503/issue-503.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/std@0.210.0/testing/asserts.ts";
import { assertEquals } from "https://deno.land/std@0.220.0/assert/mod.ts";

import { decodeHTML } from "http://localhost:8080/[email protected]/lib/decode";

Expand Down
2 changes: 1 addition & 1 deletion test/issue-509/issue-509.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertStringIncludes } from "https://deno.land/std@0.210.0/testing/asserts.ts";
import { assertStringIncludes } from "https://deno.land/std@0.220.0/assert/mod.ts";

Deno.test("issue #509", async () => {
const res = await fetch("http://localhost:8080/[email protected]", {
Expand Down
2 changes: 1 addition & 1 deletion test/issue-512/issue-512.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertArrayIncludes } from "https://deno.land/std@0.210.0/testing/asserts.ts";
import { assertArrayIncludes } from "https://deno.land/std@0.220.0/assert/mod.ts";

import * as mod from "http://localhost:8080/[email protected]";

Expand Down
2 changes: 1 addition & 1 deletion test/issue-520/issue-520.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/std@0.210.0/testing/asserts.ts";
import { assertEquals } from "https://deno.land/std@0.220.0/assert/mod.ts";

import Draggable from "http://localhost:8080/react-draggable";

Expand Down
2 changes: 1 addition & 1 deletion test/issue-521/issue-521.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/std@0.210.0/testing/asserts.ts";
import { assertEquals } from "https://deno.land/std@0.220.0/assert/mod.ts";

import * as cm from "http://localhost:8080/[email protected]?exports=minimalSetup";

Expand Down
2 changes: 1 addition & 1 deletion test/issue-527/issue-527.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/std@0.210.0/testing/asserts.ts";
import { assertEquals } from "https://deno.land/std@0.220.0/assert/mod.ts";

import { blue } from "http://localhost:8080/@twind/[email protected]/colors";

Expand Down
2 changes: 1 addition & 1 deletion test/issue-553/issue-553.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/std@0.210.0/testing/asserts.ts";
import { assertEquals } from "https://deno.land/std@0.220.0/assert/mod.ts";

import HTTP from "http://localhost:8080/[email protected]/src/http.js";

Expand Down
2 changes: 1 addition & 1 deletion test/issue-557/issue-557.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/std@0.210.0/testing/asserts.ts";
import { assertEquals } from "https://deno.land/std@0.220.0/assert/mod.ts";

import Asciidoctor from "http://localhost:8080/[email protected]";

Expand Down
2 changes: 1 addition & 1 deletion test/issue-562/issue-562.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/std@0.210.0/testing/asserts.ts";
import { assertEquals } from "https://deno.land/std@0.220.0/assert/mod.ts";

import { upnpNat } from "http://localhost:8080/@achingbrain/[email protected]";

Expand Down
2 changes: 1 addition & 1 deletion test/issue-566/issue-566.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/std@0.210.0/testing/asserts.ts";
import { assertEquals } from "https://deno.land/std@0.220.0/assert/mod.ts";

import { Expo } from "http://localhost:8080/[email protected]";

Expand Down
2 changes: 1 addition & 1 deletion test/issue-572/issue-572.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/std@0.210.0/testing/asserts.ts";
import { assertEquals } from "https://deno.land/std@0.220.0/assert/mod.ts";

import { filterCookies } from "http://localhost:8080/@supabase/[email protected]";

Expand Down
2 changes: 1 addition & 1 deletion test/issue-575/issue-575.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/std@0.210.0/testing/asserts.ts";
import { assertEquals } from "https://deno.land/std@0.220.0/assert/mod.ts";
import * as mod from "http://localhost:8080/@mui/[email protected]?alias=react:preact/compat,react-dom:preact/compat,react/jsx-runtime:preact/jsx-runtime&[email protected]&target=es2020&exports=Autocomplete,createFilterOptions,TextField,Button,Dialog,DialogTitle,DialogContent,DialogContentText,DialogActions,Accordion,AccordionSummary,AccordionDetails,Typography";

Deno.test("issue #575", () => {
Expand Down
2 changes: 1 addition & 1 deletion test/issue-576/issue-576.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/std@0.210.0/testing/asserts.ts";
import { assertEquals } from "https://deno.land/std@0.220.0/assert/mod.ts";

Deno.test("issue #576", async () => {
const res = await fetch(`http://localhost:8080/[email protected]`);
Expand Down
2 changes: 1 addition & 1 deletion test/issue-577/issue-577.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/std@0.210.0/testing/asserts.ts";
import { assertEquals } from "https://deno.land/std@0.220.0/assert/mod.ts";
import { Document } from "https://deno.land/x/[email protected]/deno-dom-wasm.ts";

// add virtual document object to globalThis which is required by html-dom-parser
Expand Down
2 changes: 1 addition & 1 deletion test/issue-578/issue-578.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/std@0.210.0/testing/asserts.ts";
import { assertEquals } from "https://deno.land/std@0.220.0/assert/mod.ts";

Deno.test("issue #578", async () => {
const res = await fetch(`http://localhost:8080/[email protected]/dist/katex.mjs`);
Expand Down
2 changes: 1 addition & 1 deletion test/issue-580/issue-580.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals, assertStringIncludes } from "https://deno.land/std@0.210.0/testing/asserts.ts";
import { assertEquals, assertStringIncludes } from "https://deno.land/std@0.220.0/assert/mod.ts";

Deno.test("issue #580", async () => {
let res = await fetch(`http://localhost:8080/[email protected]`);
Expand Down
2 changes: 1 addition & 1 deletion test/issue-581/issue-581.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/std@0.210.0/testing/asserts.ts";
import { assertEquals } from "https://deno.land/std@0.220.0/assert/mod.ts";

import dayjs from "http://localhost:8080/[email protected]";
import relativeTime from "http://localhost:8080/[email protected]/plugin/relativeTime.js";
Expand Down
2 changes: 1 addition & 1 deletion test/issue-583/issue-583.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/std@0.210.0/testing/asserts.ts";
import { assertEquals } from "https://deno.land/std@0.220.0/assert/mod.ts";

import styleToJS from "http://localhost:8080/[email protected]";

Expand Down
2 changes: 1 addition & 1 deletion test/issue-588/issue-588.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertStringIncludes } from "https://deno.land/std@0.210.0/testing/asserts.ts";
import { assertStringIncludes } from "https://deno.land/std@0.220.0/assert/mod.ts";

Deno.test("issue #588", async () => {
const code = await fetch(
Expand Down

0 comments on commit 18c1be2

Please sign in to comment.