Skip to content

Commit

Permalink
test: fix windows
Browse files Browse the repository at this point in the history
  • Loading branch information
pi0 committed Jan 4, 2024
1 parent e923340 commit 6a930fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/plugin.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ await rm(r(".tmp"), { recursive: true }).catch(() => {});
describe("plugin:rollup", () => {
it("inline", async () => {
const { output } = await _rollupBuild(
r("fixture/static-import.mjs"),
"fixture/static-import.mjs",
"rollup-inline",
{},
);
Expand All @@ -26,7 +26,7 @@ describe("plugin:rollup", () => {
it("esmImport", async () => {
const name = "rollup-esm";
const { output } = await _rollupBuild(
r("fixture/dynamic-import.mjs"),
"fixture/dynamic-import.mjs",
name,
{ esmImport: true },
);
Expand Down

0 comments on commit 6a930fa

Please sign in to comment.