woocommerce-paypal-payments/playwright.config.js

13 lines
239 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',
timeout: 60000,
2023-02-24 15:17:40 +01:00
use: {
baseURL: process.env.BASEURL,
2023-03-22 11:20:27 +02:00
ignoreHTTPSErrors: true,
2023-02-24 15:17:40 +01:00
},
};
module.exports = config;