woocommerce-paypal-payments/playwright.config.js
2023-02-27 11:39:30 +01:00

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;