Files
showbridge-webui/e2e/modules.spec.ts
T
Joel Wetzell 97f1cca090 add todo
2026-05-17 16:42:20 -05:00

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