Compare commits
1 Commits
65432c8c06
..
v0.1.9
| Author | SHA1 | Date | |
|---|---|---|---|
| 48730fcf26 |
@@ -1,3 +1,9 @@
|
|||||||
|
## [0.1.9] - 2026-04-27
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- test: remove migrated Playwright tests (epic3-rankings, home-page)
|
||||||
|
|
||||||
## [0.1.8] - 2026-04-27
|
## [0.1.8] - 2026-04-27
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|||||||
@@ -599,39 +599,3 @@ Then('I should see the rankings table', async function () {
|
|||||||
await expect(world.page.locator('table')).toBeVisible();
|
await expect(world.page.locator('table')).toBeVisible();
|
||||||
console.log('🌍 Verified rankings table is visible');
|
console.log('🌍 Verified rankings table is visible');
|
||||||
});
|
});
|
||||||
|
|
||||||
// Tournament Schedule Steps
|
|
||||||
Then('I should see round {int} matchups', async function (roundNumber: number) {
|
|
||||||
const roundText = `Round ${roundNumber}`;
|
|
||||||
await expect(world.page.locator(`text=${roundText}`)).toBeVisible();
|
|
||||||
console.log(`🌍 Verified round ${roundNumber} matchups are visible`);
|
|
||||||
});
|
|
||||||
|
|
||||||
Then('I should see a bye round for one team', async function () {
|
|
||||||
const content = await world.page.content();
|
|
||||||
const hasBye = content.toLowerCase().includes('bye');
|
|
||||||
expect(hasBye).toBe(true);
|
|
||||||
console.log('🌍 Verified bye round is visible');
|
|
||||||
});
|
|
||||||
|
|
||||||
Then('each team should play every other team exactly once', async function () {
|
|
||||||
// This is a complex verification that would require counting matchups
|
|
||||||
// For now, just verify that the schedule was generated
|
|
||||||
const content = await world.page.content();
|
|
||||||
expect(content).toMatch(/schedule|round|matchup/i);
|
|
||||||
console.log('🌍 Verified schedule exists with matchups');
|
|
||||||
});
|
|
||||||
|
|
||||||
When('I click on a matchup', async function () {
|
|
||||||
// Click on the first matchup element
|
|
||||||
const matchup = world.page.locator('[data-testid="matchup"], .matchup, a[href*="/matches/"]').first();
|
|
||||||
await matchup.click();
|
|
||||||
await world.page.waitForLoadState('domcontentloaded');
|
|
||||||
console.log('🌍 Clicked on matchup');
|
|
||||||
});
|
|
||||||
|
|
||||||
Then('I should be on the match result entry page', async function () {
|
|
||||||
const currentUrl = world.page.url();
|
|
||||||
console.log(`🌍 Checking current URL: ${currentUrl}`);
|
|
||||||
expect(currentUrl).toMatch(/\/matches\/|\/admin\/tournaments\/\d+\/results/);
|
|
||||||
});
|
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "euchre_camp",
|
"name": "euchre_camp",
|
||||||
"version": "0.1.8",
|
"version": "0.1.9",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "NEXT_PUBLIC_GIT_COMMIT=$(git rev-parse --short HEAD) next dev",
|
"dev": "NEXT_PUBLIC_GIT_COMMIT=$(git rev-parse --short HEAD) next dev",
|
||||||
|
|||||||
Reference in New Issue
Block a user