diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index d6c474d..af798e9 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -1,10 +1,10 @@ -name: Node.js CI +name: CRACO Unit and Integration Tests on: push: - # branches: [main] + branches: [main] pull_request: - # branches: [main] + branches: [main] jobs: build: diff --git a/test/integration/fixtures/basic-integration-test/index.test.js b/test/integration/fixtures/basic-integration-test/index.test.js index b42334a..e8550c4 100644 --- a/test/integration/fixtures/basic-integration-test/index.test.js +++ b/test/integration/fixtures/basic-integration-test/index.test.js @@ -15,7 +15,7 @@ beforeAll(async () => { // Leave time for the server to initialize await new Promise((resolve) => { - setTimeout(resolve, 10000); + setTimeout(resolve, 5000); }); });