We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 84f633c commit c143fe6Copy full SHA for c143fe6
test/plugin.test.ts
@@ -95,11 +95,7 @@ describe("scalaJSPlugin", () => {
95
await plugin.configResolved.call(undefined, { mode: MODE_DEVELOPMENT });
96
await plugin.buildStart.call(fakePluginContext, {});
97
98
- const result = normalizeSlashes(await plugin.resolveId.call(fakePluginContext, 'customsjs:main.js'))
99
-
100
- console.log(result);
101
102
- expect(result)
+ expect(normalizeSlashes(await plugin.resolveId.call(fakePluginContext, 'customsjs:main.js')))
103
.toContain('/testproject/target/scala-3.3.3/testproject-fastopt/main.js');
104
105
expect(await plugin.resolveId.call(fakePluginContext, 'scalajs:main.js'))
0 commit comments