Skip to content

Commit

Permalink
fix import.
Browse files Browse the repository at this point in the history
  • Loading branch information
dojyorin committed Apr 6, 2024
1 parent 56ac4d9 commit 3a0f60f
Showing 1 changed file with 22 additions and 22 deletions.
44 changes: 22 additions & 22 deletions mod.test.ts
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
export * from "./test/pure/base64.test.ts";
export * from "./test/pure/byte.test.ts";
export * from "./test/pure/crypto.test.ts";
export * from "./test/pure/deep.test.ts";
export * from "./test/pure/deflate.test.ts";
export * from "./test/pure/fetch.test.ts";
export * from "./test/pure/minipack.test.ts";
export * from "./test/pure/primitive.test.ts";
export * from "./test/pure/stream.test.ts";
export * from "./test/pure/text.test.ts";
export * from "./test/pure/time.test.ts";
export * from "./test/pure/worker.test.ts";
import "./test/pure/base64.test.ts";
import "./test/pure/byte.test.ts";
import "./test/pure/crypto.test.ts";
import "./test/pure/deep.test.ts";
import "./test/pure/deflate.test.ts";
import "./test/pure/fetch.test.ts";
import "./test/pure/minipack.test.ts";
import "./test/pure/primitive.test.ts";
import "./test/pure/stream.test.ts";
import "./test/pure/text.test.ts";
import "./test/pure/time.test.ts";
import "./test/pure/worker.test.ts";

export * from "./test/pure_ext/csv.test.ts";
export * from "./test/pure_ext/excel.test.ts";
export * from "./test/pure_ext/zip.test.ts";
import "./test/pure_ext/csv.test.ts";
import "./test/pure_ext/excel.test.ts";
import "./test/pure_ext/zip.test.ts";

export * from "./test/deno/json.test.ts";
export * from "./test/deno/os.test.ts";
export * from "./test/deno/path.test.ts";
export * from "./test/deno/process.test.ts";
import "./test/deno/json.test.ts";
import "./test/deno/os.test.ts";
import "./test/deno/path.test.ts";
import "./test/deno/process.test.ts";

export * from "./test/deno_ext/dom.test.ts";
export * from "./test/deno_ext/log.test.ts";
export * from "./test/deno_ext/smtp.test.ts";
import "./test/deno_ext/dom.test.ts";
import "./test/deno_ext/log.test.ts";
import "./test/deno_ext/smtp.test.ts";

0 comments on commit 3a0f60f

Please sign in to comment.