woocommerce-paypal-payments/playwright.config.js

12 lines
206 B
JavaScript
Raw Normal View History

require('dotenv').config({ path: '.env.e2e' });
2023-02-24 15:17:40 +01:00
const config = {
2023-02-24 15:37:35 +01:00
testDir: './tests/playwright',
2023-02-24 15:17:40 +01:00
timeout: 30000,
use: {
baseURL: process.env.BASEURL,
},
};
module.exports = config;