Skip to content

Commit

Permalink
chore: fix var name
Browse files Browse the repository at this point in the history
  • Loading branch information
marvinhagemeister committed Jun 26, 2024
1 parent fbe9353 commit 3e499dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/dev/builder_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,9 @@ Deno.test({

await builder.build(app);

const css = await Deno.readTextFile(
const code = await Deno.readTextFile(
path.join(tmp, "dist", "static", "RemoteIsland.js"),
);
expect(css).toContain('"remote-island"');
expect(code).toContain('"remote-island"');
},
});

0 comments on commit 3e499dd

Please sign in to comment.