aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar dave caruso <me@paperdave.net> 2023-05-12 16:39:28 -0400
committerGravatar GitHub <noreply@github.com> 2023-05-12 17:39:28 -0300
commit7f25aa9e0864e95aad72ee85d475a03aee68bfb4 (patch)
tree6010789a3a7dd4a99d9f12d3c630799ce68115be
parentf48f48795b6ee427c13c2249fa824e7eb731953c (diff)
downloadbun-7f25aa9e0864e95aad72ee85d475a03aee68bfb4.tar.gz
bun-7f25aa9e0864e95aad72ee85d475a03aee68bfb4.tar.zst
bun-7f25aa9e0864e95aad72ee85d475a03aee68bfb4.zip
windows path compatibility (#2869)
* winndows path compatibility * change * to "star" and fix import --------- Co-authored-by: cirospaciari <ciro.spaciari@gmail.com>
-rw-r--r--test/js/node/fs/export-star-from.ts (renamed from test/js/node/fs/export-*-from.ts)0
-rw-r--r--test/js/node/fs/fs.test.ts2
2 files changed, 1 insertions, 1 deletions
diff --git a/test/js/node/fs/export-*-from.ts b/test/js/node/fs/export-star-from.ts
index 1c2b97875..1c2b97875 100644
--- a/test/js/node/fs/export-*-from.ts
+++ b/test/js/node/fs/export-star-from.ts
diff --git a/test/js/node/fs/fs.test.ts b/test/js/node/fs/fs.test.ts
index e39db9ecf..03742d843 100644
--- a/test/js/node/fs/fs.test.ts
+++ b/test/js/node/fs/fs.test.ts
@@ -34,7 +34,7 @@ import { tmpdir } from "node:os";
import { join } from "node:path";
import { ReadStream as ReadStream_, WriteStream as WriteStream_ } from "./export-from.js";
-import { ReadStream as ReadStreamStar_, WriteStream as WriteStreamStar_ } from "./export-*-from.js";
+import { ReadStream as ReadStreamStar_, WriteStream as WriteStreamStar_ } from "./export-star-from.js";
const Buffer = globalThis.Buffer || Uint8Array;