Skip to content

Commit

Permalink
fixup! fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
vicb committed Dec 17, 2024
1 parent 75774e9 commit a1b4438
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/wrangler/src/__tests__/deploy.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10069,7 +10069,7 @@ export default{
fs.writeFileSync(
"index.js",
`
import path from 'path';
import path from 'node:path';
console.log(path);
export default {}
`
Expand All @@ -10090,7 +10090,7 @@ export default{
}
`);
expect(fs.readFileSync("dist/index.js", { encoding: "utf-8" })).toContain(
`import path from "path";`
`import path from "node:path";`
);
});

Expand Down

0 comments on commit a1b4438

Please sign in to comment.