woocommerce-paypal-payments/tests/playwright/example.spec.js
Emili Castells Guasch 0fd45c7fff Add playwright
2023-02-24 15:17:40 +01:00

6 lines
179 B
JavaScript

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