projecte_ionic/node_modules/protractor/exampleTypescript/asyncAwait/conf.js

21 lines
528 B
JavaScript
Raw Permalink Normal View History

2022-02-09 18:30:03 +01:00
"use strict";
exports.config = {
framework: 'jasmine',
capabilities: {
browserName: 'chrome'
},
seleniumAddress: 'http://localhost:4444/wd/hub',
// You could set no globals to true to avoid jQuery '$' and protractor '$'
// collisions on the global namespace.
noGlobals: true,
specs: [
'spec.ts'
],
SELENIUM_PROMISE_MANAGER: false,
beforeLaunch: function() {
require('ts-node').register({
project: '.'
});
}
};