2014-06-23 23:17:31 +02:00
|
|
|
'use strict';
|
|
|
|
|
|
2014-02-19 21:01:54 -08:00
|
|
|
var config = require('./protractor-shared-conf').config;
|
2014-01-07 11:51:32 -08:00
|
|
|
|
2014-02-19 21:01:54 -08:00
|
|
|
config.specs = [
|
2014-10-15 13:58:24 -04:00
|
|
|
'test/e2e/tests/**/*.js',
|
2014-02-19 21:01:54 -08:00
|
|
|
'build/docs/ptore2e/**/*.js',
|
2014-09-15 14:55:18 +01:00
|
|
|
'docs/app/e2e/**/*.scenario.js'
|
2014-02-19 21:01:54 -08:00
|
|
|
];
|
2014-01-07 11:51:32 -08:00
|
|
|
|
2016-07-21 00:27:36 +02:00
|
|
|
config.capabilities.browserName = 'chrome';
|
2014-02-19 21:01:54 -08:00
|
|
|
|
|
|
|
|
exports.config = config;
|