aboutsummaryrefslogtreecommitdiff
path: root/test/bundler/bundler_plugin.test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'test/bundler/bundler_plugin.test.ts')
-rw-r--r--test/bundler/bundler_plugin.test.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/bundler/bundler_plugin.test.ts b/test/bundler/bundler_plugin.test.ts
index d2afc3d3f..37e803876 100644
--- a/test/bundler/bundler_plugin.test.ts
+++ b/test/bundler/bundler_plugin.test.ts
@@ -843,7 +843,7 @@ describe("bundler", () => {
build.onResolve({ "filter": /.magic$/ }, args => {
console.log({ root, resolveDir: args.resolveDir });
expect(args.resolveDir).toBeDefined();
- expect(args.resolveDir!.replace("/private", "")).toEqual(root);
+ expect(args.resolveDir).toEqual(root);
return {
path: "magic",
"namespace": "magic",