diff --git a/apps/meteor/playwright.config.ts b/apps/meteor/playwright.config.ts index 8401640d940e..f729b707c136 100644 --- a/apps/meteor/playwright.config.ts +++ b/apps/meteor/playwright.config.ts @@ -23,7 +23,7 @@ const config: PlaywrightTestConfig = { baseURL, }, outputDir: 'tests/e2e/test-failures', - reporter: [['list']], + reporter: process.env.CI ? 'github' : 'list', testDir: 'tests/e2e', retries: 3, workers: 1, diff --git a/apps/meteor/tests/e2e/11-admin.spec.ts b/apps/meteor/tests/e2e/11-admin.spec.ts index 9dca6a22db0c..d422dfb180d4 100644 --- a/apps/meteor/tests/e2e/11-admin.spec.ts +++ b/apps/meteor/tests/e2e/11-admin.spec.ts @@ -185,7 +185,9 @@ test.describe('[Administration]', () => { test.describe('[General]', () => { test('expect change site url reset button is showed', async () => { + await admin.generalSiteUrl.type('something'); await expect(admin.generalSiteUrlReset).toBeVisible(); + await admin.generalSiteUrlReset.click(); }); test('expect change site name reset button is showed', async () => { diff --git a/turbo.json b/turbo.json index c12232840f71..47b65ad60234 100644 --- a/turbo.json +++ b/turbo.json @@ -7,7 +7,8 @@ }, "build": { "dependsOn": ["^build"], - "outputs": ["dist/**"] + "outputs": ["dist/**"], + "inputs": ["!tests/**"] }, "testunit": { "dependsOn": ["build"],