Files
windmill/frontend/tests/workspaces.spec.ts
T
Ádám Kovács f0435f5f81 fix(frontend): Playwright (#1108)
* fix(frontend): Playwright

* fix(frontend): Update test base url

* feat(ci): Add base url to playwright
2023-01-16 16:51:14 +01:00

7 lines
236 B
TypeScript

import { test, expect } from '@playwright/test'
test('can visit workspace selector page', async ({ page }) => {
await page.goto('/user/workspaces')
await expect(page.locator('h1', { hasText: 'Select a workspace' })).toBeVisible()
})