mirror of
https://github.com/jwetzell/showbridge-webui.git
synced 2026-08-11 01:13:39 +00:00
9 lines
299 B
TypeScript
9 lines
299 B
TypeScript
import { test } from '@playwright/test';
|
|
|
|
test('add module', async ({ page }) => {
|
|
await page.goto('/');
|
|
await page.locator('app-module-list').getByText('add').click();
|
|
await page.getByRole('menuitem', { name: 'HTTP Server' }).click();
|
|
// TODO(jwetzell): test that the module gets added
|
|
});
|