mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-08-31 04:58:28 +08:00
11 lines
206 B
JavaScript
11 lines
206 B
JavaScript
require('dotenv').config({ path: '.env.e2e' });
|
|
|
|
const config = {
|
|
testDir: './tests/playwright',
|
|
timeout: 30000,
|
|
use: {
|
|
baseURL: process.env.BASEURL,
|
|
},
|
|
};
|
|
|
|
module.exports = config;
|