Skip to content

Commit

Permalink
Test verbose logging
Browse files Browse the repository at this point in the history
  • Loading branch information
ssaegrov committed Sep 21, 2023
1 parent 5ea6a1a commit fa5af3a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"start": "ts-node ./server/server.ts",
"type-check": "tsc --project tsconfig.json",
"prepare": "husky install",
"playwright": "npx playwright test",
"playwright": "DEBUG=pw:api npx playwright test",
"playwright:ui": "npx playwright test --ui",
"test": "vitest",
"test-coverage": "vitest --coverage"
Expand Down
2 changes: 1 addition & 1 deletion tests/playwright/oppgaveliste.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ test("Oppgavelisten har oppgaver listet opp", async ({ page, baseURL }) => {
await expect(page.getByText(oppgaver[1].uuid)).toBeVisible();
});

test.skip("Man kan gå videre til en oppgave ", async ({ page, baseURL }) => {
test("Man kan gå videre til en oppgave ", async ({ page, baseURL }) => {
const oppgaver = oppgaverResponse;
const oppgave = oppgaver[0];

Expand Down

0 comments on commit fa5af3a

Please sign in to comment.