Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
UncleGedd committed Oct 10, 2024
1 parent 80256ec commit 05bc9fa
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"test:api-auth": "playwright test tests/api-auth.spec.ts --config=playwright.config.apiauth.ts --ui",
"test:api-auth": "playwright test tests/api-auth.spec.ts --config=playwright.config.apiauth.ts",
"test:integration": "playwright test",
"test:install": "playwright install",
"test:unit": "vitest run"
Expand Down
1 change: 0 additions & 1 deletion ui/tests/api-auth.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ test.describe.serial('Authentication Tests', () => {
test('authenticated access', async ({ page }) => {
await page.goto(`/auth?token=${extractedToken}`)
await page.waitForSelector('role=link[name="Overview"]', { state: 'visible', timeout: 10000 })
await page.getByRole('link', { name: 'Overview' }).click()
const nodeCountEl = page.getByTestId('resource-count-nodes')
await expect(nodeCountEl).toHaveText('1')
})
Expand Down

0 comments on commit 05bc9fa

Please sign in to comment.