mirror of
https://github.com/zhigang1992/angular.js.git
synced 2026-01-12 22:45:52 +08:00
These tests didn't really fit in the test folder as the docs app is mostly a separate entity from the AngularJS codebase.
15 lines
235 B
JavaScript
15 lines
235 B
JavaScript
'use strict';
|
|
|
|
var config = require('./protractor-shared-conf').config;
|
|
|
|
config.specs = [
|
|
'build/docs/ptore2e/**/*.js',
|
|
'docs/app/e2e/docsAppE2E.js'
|
|
];
|
|
|
|
config.capabilities = {
|
|
browserName: 'chrome',
|
|
};
|
|
|
|
exports.config = config;
|