diff --git a/packages/integration-tests/package.json b/packages/integration-tests/package.json index 6b44ca240..8d6d96b19 100644 --- a/packages/integration-tests/package.json +++ b/packages/integration-tests/package.json @@ -14,7 +14,7 @@ "test:only": "NODE_OPTIONS=--experimental-vm-modules jest", "test": "pnpm build && pnpm test:api && pnpm test:ui", "test:api": "pnpm test:only -i ./lib/tests/api/", - "test:ui": "pnpm test:only -i --config=jest.config.ui.js ./lib/tests/console/ ./lib/tests/main-flow/", + "test:ui": "pnpm test:only -i --config=jest.config.ui.js ./lib/tests/console/ ./lib/tests/journey/", "lint": "eslint --ext .ts src", "lint:report": "pnpm lint --format json --output-file report.json", "start": "pnpm test" diff --git a/packages/integration-tests/src/tests/main-flow/bootstrap.test.ts b/packages/integration-tests/src/tests/journey/bootstrap.test.ts similarity index 86% rename from packages/integration-tests/src/tests/main-flow/bootstrap.test.ts rename to packages/integration-tests/src/tests/journey/bootstrap.test.ts index 736d6ba79..b4ab55a5b 100644 --- a/packages/integration-tests/src/tests/main-flow/bootstrap.test.ts +++ b/packages/integration-tests/src/tests/journey/bootstrap.test.ts @@ -4,7 +4,7 @@ */ // Tip: See https://github.com/argos-ci/jest-puppeteer/blob/main/packages/expect-puppeteer/README.md // for convenient expect methods -describe('smoke testing for the main flow', () => { +describe('smoke testing', () => { it('should not explode', async () => { expect(true); });