"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.config = void 0; exports.config = { // ================== // Specify Test Files // ================== // specs: ['./test/**/*.js'], // ============ // Capabilities // ============ // capabilities: [], // =================== // Test Configurations // =================== // logLevel: 'debug', bail: 0, baseUrl: 'http://localhost', waitforTimeout: 15000, connectionRetryTimeout: 180000, connectionRetryCount: 3, services: [], // Framework you want to run your specs with. framework: 'mocha', reporters: ['spec'], mochaOpts: { ui: 'bdd', require: ['@babel/register'], timeout: 180000, }, };