From b77f59fa42dda8e61fcbf4ecae13969bc7aec42f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nacho=20Codo=C3=B1er?= Date: Wed, 13 Aug 2025 14:29:19 +0200 Subject: [PATCH] add custom assertions for production client rebuild logs --- tools/modern-tests/test-helpers.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/modern-tests/test-helpers.js b/tools/modern-tests/test-helpers.js index 6acba879b5..eef3ab7b0a 100644 --- a/tools/modern-tests/test-helpers.js +++ b/tools/modern-tests/test-helpers.js @@ -157,7 +157,7 @@ export function testMeteorRspackBundler(options) { await cleanupTempDir(tempDir); }); - test.only(`"meteor run" / should run and rebuild the app with Rspack`, async () => { + test(`"meteor run" / should run and rebuild the app with Rspack`, async () => { // Run the Meteor app and wait for "restarted at" output const result = await runMeteorApp(tempDir, port, { waitForOutput: "=> App running at:", @@ -239,7 +239,7 @@ export function testMeteorRspackBundler(options) { await killProcessByPort('8080'); }); - test.only(`"meteor run --production" / should run and rebuild the app with Rspack in production`, async () => { + test(`"meteor run --production" / should run and rebuild the app with Rspack in production`, async () => { // Run the Meteor app and wait for "restarted at" output const result = await runMeteorApp(tempDir, port, { waitForOutput: "=> App running at:",