mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-19 00:02:03 +00:00
9883eae2e7
* cypress * all * global setup * global setup * setup node * setup node * setup node
8 lines
211 B
TypeScript
8 lines
211 B
TypeScript
import { test, expect } from '@playwright/test'
|
|
|
|
|
|
test('can login', async ({ page }) => {
|
|
await page.goto('http://localhost:8000/')
|
|
await expect(page.locator('text=Select a workspace')).toBeVisible()
|
|
})
|