From aecc1a0faca951e2f779f7d3ee067277a1fca067 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nacho=20Codo=C3=B1er?= Date: Thu, 7 Aug 2025 11:38:01 +0200 Subject: [PATCH] enable React app creation and bundling tests --- tools/modern-tests/react.test.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/modern-tests/react.test.js b/tools/modern-tests/react.test.js index a73cfbbe7c..46c6c5c5cf 100644 --- a/tools/modern-tests/react.test.js +++ b/tools/modern-tests/react.test.js @@ -13,7 +13,7 @@ import path from 'path'; import waitOn from "wait-on"; describe('React App Bundling', () => { - describe.skip('Meteor Creator', () => { + describe('Meteor Creator', () => { const PORT = 3100; beforeAll(async () => { @@ -21,7 +21,7 @@ describe('React App Bundling', () => { await killProcessByPort(PORT); }); - test('"meteor create" should create a new Meteor app with --react example', async () => { + test('"meteor create" should create a new Meteor react app', async () => { // Create a new Meteor app with --react example const result = await createMeteorApp('react', 'react'); const newAppTempDir = result.tempDir; @@ -63,7 +63,7 @@ describe('React App Bundling', () => { }); }); - describe.skip('Meteor Bundler', () => { + describe('Meteor Bundler', () => { const PORT = 3101; let meteorProcess; let tempDir; @@ -81,7 +81,7 @@ describe('React App Bundling', () => { await cleanupTempDir(tempDir); }); - test(`"meteor run" should start the app at "http://localhost:${PORT}"`, async () => { + test(`"meteor run" should start the app`, async () => { // Run the Meteor app meteorProcess = (await runMeteorApp(tempDir, PORT))?.meteorProcess;