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 ca8edc0 commit 7765901Copy full SHA for 7765901
test/Errors.test.js
@@ -350,7 +350,9 @@ describe("Errors", () => {
350
(errors, warnings) => {
351
expect(errors).toHaveLength(1);
352
const messages = errors[0].split("\n");
353
- expect(messages[1]).toMatch(/^Module build failed: Final loader \(.+\) didn't return a Buffer or String/);
+ expect(messages[1]).toMatch(
354
+ /^Module build failed: Error: Final loader \(.+\) didn't return a Buffer or String/
355
+ );
356
done();
357
}
358
);
0 commit comments