Add playwright

This commit is contained in:
Emili Castells Guasch 2023-02-24 15:17:40 +01:00
parent 68569c93f7
commit 0fd45c7fff
6 changed files with 58 additions and 6 deletions

View file

@ -0,0 +1,6 @@
const { test, expect } = require('@playwright/test');
test('has ngrok url', async ({page, baseURL}) => {
await page.goto('/');
await expect(page).toHaveURL(baseURL);
});