svchat/tests/signup.setup.ts

7 lines
139 B
TypeScript

import { test } from '@playwright/test';
import { signup } from './utils';
test('Signup', async ({ page }) => {
await signup(page);
});