Add tests/swarmpit.nixc.us-login-page.test.ts

This commit is contained in:
colin 2023-11-22 02:41:09 +00:00
parent ba2168345c
commit 9f6bd57c46
1 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,7 @@
import { test, expect } from '@playwright/test';
test('test', async ({ page }) => {
await page.goto('https://swarmpit.nixc.us/#/login');
await page.goto('https://swarmpit.nixc.us/');
await page.getByRole('img').click();
});