mirror of
https://github.com/zhigang1992/angular.js.git
synced 2026-01-13 08:59:54 +08:00
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;
|