mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-19 08:01:25 +00:00
b4908392d0
* fix(frontend): Playwright * fix(frontend): Update test base url * feat(ci): Add base url to playwright
7 lines
236 B
TypeScript
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()
|
|
})
|