39c82f3fb7
Use the multiConfiguration ability of Protractor to start tests on multiple browsers from the same travis cell. Group tests by type (jquery, jqlite, or docs tests) instead of by browser. Turn on tests for jQuery.
13 lines
216 B
JavaScript
13 lines
216 B
JavaScript
var config = require('./protractor-shared-conf').config;
|
|
|
|
config.specs = [
|
|
'build/docs/ptore2e/**/*.js',
|
|
'test/e2e/docsAppE2E.js'
|
|
];
|
|
|
|
config.capabilities = {
|
|
browserName: 'chrome',
|
|
};
|
|
|
|
exports.config = config;
|