diff --git a/app/core/tournament/bracket.test.ts b/app/core/tournament/bracket.test.ts index e9acd8a2a..cc2d9f406 100644 --- a/app/core/tournament/bracket.test.ts +++ b/app/core/tournament/bracket.test.ts @@ -105,7 +105,7 @@ TournamentRoundsForDB("Generates rounds correctly", () => { assert.equal(uniqueParticipants.size, TEAM_COUNT + 1); // + BYE }); -TournamentRoundsForDB.only("Advances bye to right spot", () => { +TournamentRoundsForDB("Advances bye to right spot", () => { const TEAM_COUNT = 7; const bracketForDb = tournamentRoundsForDB({ mapList, diff --git a/cypress/integration/tournament-check-in.spec.ts b/cypress/integration/tournament-check-in.spec.ts index 0740af2b2..dd893914d 100644 --- a/cypress/integration/tournament-check-in.spec.ts +++ b/cypress/integration/tournament-check-in.spec.ts @@ -4,7 +4,7 @@ describe("Before tournament starts", () => { cy.logIn("sendou"); }); - it.only("Can edit team details, add/remove players and check-in", () => { + it("Can edit team details, add/remove players and check-in", () => { cy.visit("/to/sendou/in-the-zone-x/manage-roster", { onBeforeLoad(win: Window): void { cy.spy(win.navigator.clipboard, "writeText").as("copy"); diff --git a/package.json b/package.json index 7ca2d66ff..1624d37e5 100644 --- a/package.json +++ b/package.json @@ -20,7 +20,7 @@ "typecheck": "tsc --noEmit", "cy:open": "npx cypress open", "cy:run": "npx cypress run", - "test:unit": "tsm node_modules/uvu/bin.js -i cypress" + "test:unit": "uvu -r tsm -r tsconfig-paths/register -i cypress" }, "dependencies": { "@dnd-kit/core": "^4.0.3",