UNPKG

protractor-helpers

Version:

Additional matchers / locators and helpers for system tests using protractor and Jasmine

30 lines (20 loc) 522 B
/* global browser, angular, document, beforeEach, afterEach */ 'use strict'; var fs = require('fs'); var glob = require('glob'); var config = {}; config.allScriptsTimeout = 120000; config.baseUrl = 'http://localhost:9876/'; config.specs = [ process.cwd() + '/test/spec/e2e/**/*.js' ]; config.exclude = [ process.cwd() + '/test/spec/e2e/pageObjects/*.js' ]; config.framework = 'jasmine'; config.capabilities = { browserName: 'chrome', shardTestFiles: true, maxInstances: 6 }; module.exports.config = config;