woocommerce-paypal-payments/playwright.config.js

15 lines
238 B
JavaScript
Raw Normal View History

2023-02-24 15:17:40 +01:00
/**
* Read environment variables from file.
* https://github.com/motdotla/dotenv
*/
require('dotenv').config();
const config = {
timeout: 30000,
use: {
baseURL: process.env.BASEURL,
},
};
module.exports = config;