Skip to content

Commit

Permalink
Fix test after updating Aksel to v5
Browse files Browse the repository at this point in the history
  • Loading branch information
ssaegrov committed Sep 20, 2023
1 parent 39173e4 commit d574201
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/routes/saksbehandling._index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export default function Saksbehandling() {

return (
<main>
<Table size="small" zebraStripes={true}>
<Table zebraStripes={true}>
<Table.Header>
<Table.Row>
<Table.HeaderCell scope="col">Oppgave ID</Table.HeaderCell>
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 @@ -18,7 +18,7 @@ test("Man kan gå videre til en oppgave ", async ({ page, baseURL }) => {
await page
.getByRole("row")
.filter({ has: page.getByText(oppgave.uuid, { exact: false }) })
.getByRole("link", { name: "Behandle" })
.getByRole("button", { name: "Behandle" })
.click();

await expect(page).toHaveURL(`
Expand Down

0 comments on commit d574201

Please sign in to comment.