We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aee8482 commit 829001bCopy full SHA for 829001b
test/loader.test.js
@@ -302,9 +302,9 @@ describe("loader", () => {
302
);
303
const stats = await compile(compiler);
304
const codeFromBundle = getCodeFromBundle(stats, compiler);
305
- // const codeFromLess = await getCodeFromLess(testId);
306
- //
307
- // expect(codeFromBundle.css).toBe(codeFromLess.css);
+ const codeFromLess = await getCodeFromLess(testId);
+
+ expect(codeFromBundle.css).toBe(codeFromLess.css);
308
expect(codeFromBundle.css).toMatchSnapshot("css");
309
expect(getWarnings(stats)).toMatchSnapshot("warnings");
310
expect(getErrors(stats)).toMatchSnapshot("errors");
0 commit comments