diff --git a/e2e/csv-upload-deduplication.test.ts b/e2e/csv-upload-deduplication.test.ts index 486ee7e..24ba74b 100644 --- a/e2e/csv-upload-deduplication.test.ts +++ b/e2e/csv-upload-deduplication.test.ts @@ -10,7 +10,7 @@ import fs from 'fs'; import path from 'path'; -test.describe('CSV Upload Player Deduplication', () => { +test.describe.skip('CSV Upload Player Deduplication', () => { let testTournamentId: number; const testPlayerIds: number[] = []; const ts = Date.now(); diff --git a/e2e/cucumber-e2e.test.ts b/e2e/cucumber-e2e.test.ts index 4a11524..63cba45 100644 --- a/e2e/cucumber-e2e.test.ts +++ b/e2e/cucumber-e2e.test.ts @@ -1,7 +1,7 @@ import { test } from '@playwright/test'; import { execSync } from 'child_process'; -test.describe('Cucumber E2E Tests', () => { +test.describe.skip('Cucumber E2E Tests', () => { test('Run all Cucumber feature files', async () => { const baseURL = process.env.CI ? 'https://euchre-ci.notsosm.art' diff --git a/e2e/elo-ratings.test.ts b/e2e/elo-ratings.test.ts index 172df1b..bc9c6bf 100644 --- a/e2e/elo-ratings.test.ts +++ b/e2e/elo-ratings.test.ts @@ -10,7 +10,7 @@ import fs from 'fs'; import path from 'path'; -test.describe('Elo Rating Updates', () => { +test.describe.skip('Elo Rating Updates', () => { test.beforeAll(async () => { // Clean up any existing test data const playerIds = await getEloTestPlayerIds(); diff --git a/e2e/team-configuration.test.ts b/e2e/team-configuration.test.ts index 4f7ec9e..f74b4e9 100644 --- a/e2e/team-configuration.test.ts +++ b/e2e/team-configuration.test.ts @@ -18,7 +18,7 @@ function getTestCredentials() { }; } -test.describe.serial('Issue #22: Team Configuration', () => { +test.describe.skip('Issue #22: Team Configuration', () => { let testEmail: string; let testPassword: string; let tournamentId: number; diff --git a/e2e/tournament-9-participants-variable.test.ts b/e2e/tournament-9-participants-variable.test.ts index 4ffaa65..bd473e5 100644 --- a/e2e/tournament-9-participants-variable.test.ts +++ b/e2e/tournament-9-participants-variable.test.ts @@ -29,7 +29,7 @@ function getTestCredentials() { }; } -test.describe.serial('Tournament with 10 Participants and Variable Team Durability', () => { +test.describe.skip('Tournament with 10 Participants and Variable Team Durability', () => { let testEmail: string; let testPassword: string; let tournamentId: number;