From 3a0f60f932c0f5f2bc0cb7b09ca3b502efc7266a Mon Sep 17 00:00:00 2001 From: dojyorin Date: Sun, 7 Apr 2024 08:15:48 +0900 Subject: [PATCH] fix import. --- mod.test.ts | 44 ++++++++++++++++++++++---------------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/mod.test.ts b/mod.test.ts index 99729ff..1643eb5 100644 --- a/mod.test.ts +++ b/mod.test.ts @@ -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"; \ No newline at end of file +import "./test/deno_ext/dom.test.ts"; +import "./test/deno_ext/log.test.ts"; +import "./test/deno_ext/smtp.test.ts"; \ No newline at end of file