From 6dd924367f7991429bfce1a156e40876492cd0a9 Mon Sep 17 00:00:00 2001 From: Lukas Taegert-Atkinson Date: Thu, 15 Dec 2022 06:26:37 +0100 Subject: [PATCH] test: try some change --- test/cli/samples/watch/bundle-error/_config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/cli/samples/watch/bundle-error/_config.js b/test/cli/samples/watch/bundle-error/_config.js index c00b2e0161b..95cc399e3f1 100644 --- a/test/cli/samples/watch/bundle-error/_config.js +++ b/test/cli/samples/watch/bundle-error/_config.js @@ -16,7 +16,7 @@ module.exports = { setTimeout(() => unlinkSync(mainFile), 300); }, abortOnStderr(data) { - if (data.includes('[!] RollupError: Unexpected token')) { + if (data.includes('Unexpected token')) { setTimeout(() => atomicWriteFileSync(mainFile, 'export default 42;'), 500); return false; }