woocommerce-paypal-payments/playwright.config.js
Alex P 5a97bdfe87
Increase playwright timeout
sometimes it takes more time because of paypal loading
2023-03-22 11:22:22 +02:00

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;