protractor
Version:
Webdriver E2E test wrapper for Angular.
21 lines (20 loc) • 528 B
JavaScript
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: '.'
});
}
};
;