You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"test:integration:start": "docker compose -f docker-compose.integration-test.yml up --build -d app_test",
28
29
"test:integration:wait": "echo 'Waiting for app...' && sleep 15 && until curl --fail http://localhost:3001/health; do echo 'Still waiting...'; sleep 5; done; echo 'App ready!'",
29
30
"test:integration:run": "docker compose -f docker-compose.integration-test.yml run --rm --entrypoint=\"\" newman sh -c \"npm install -g newman-reporter-htmlextra && newman run /etc/newman/forms-manager-ci-mock.postman_collection.json -e /etc/newman/forms-manager-ci-mock.postman_environment.json -r cli,json,htmlextra --reporter-json-export /etc/newman/reports/newman-summary.json --reporter-htmlextra-export /etc/newman/reports/newman-report.html --reporter-htmlextra-showConsoleLogs\"",
30
31
"test:integration:stop": "docker compose -f docker-compose.integration-test.yml down -v --remove-orphans",
31
-
"test:integration": "npm run test:integration:setup && npm run test:integration:start && npm run test:integration:wait && npm run test:integration:run; EXIT_CODE=$? && exit $EXIT_CODE",
32
+
"test:integration": "npm run test:integration:setup && npm run test:integration:seed && npm run test:integration:start && npm run test:integration:wait && npm run test:integration:run; EXIT_CODE=$? && exit $EXIT_CODE",
0 commit comments