mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-08-30 05:00:51 +08:00
12 lines
239 B
JavaScript
12 lines
239 B
JavaScript
require('dotenv').config({ path: '.env.e2e' });
|
|
|
|
const config = {
|
|
testDir: './tests/playwright',
|
|
timeout: 60000,
|
|
use: {
|
|
baseURL: process.env.BASEURL,
|
|
ignoreHTTPSErrors: true,
|
|
},
|
|
};
|
|
|
|
module.exports = config;
|