Files
windmill/frontend/tests/authentication.spec.ts
Ruben Fiszel 9883eae2e7 Replace cypress with playwright (#170)
* cypress

* all

* global setup

* global setup

* setup node

* setup node

* setup node
2022-07-05 01:46:43 +02:00

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()
})