mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-08-30 05:00:51 +08:00
6 lines
179 B
JavaScript
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);
|
|
});
|