LearningSalesForceCommerceC.../storefront-reference-architecture/test/integration/it.config.js
2021-12-21 10:57:31 -08:00

14 lines
324 B
JavaScript

'use strict';
var getConfig = require('@tridnguyen/config');
var opts = Object.assign({}, getConfig({
baseUrl: 'https://' + global.baseUrl + '/on/demandware.store/Sites-RefArch-Site/en_US',
suite: '*',
reporter: 'spec',
timeout: 60000,
locale: 'x_default'
}, './config.json'));
module.exports = opts;