mirror of
https://github.com/zhigang1992/angular.js.git
synced 2026-01-12 22:45:52 +08:00
Included: - A sample test fixture - A sample test - Server middleware to serve the E2E harness - Convenient test helpers to simplify loading the right fixture Closes #9557 Closes #9527
16 lines
266 B
JavaScript
16 lines
266 B
JavaScript
'use strict';
|
|
|
|
var config = require('./protractor-shared-conf').config;
|
|
|
|
config.specs = [
|
|
'test/e2e/tests/**/*.js',
|
|
'build/docs/ptore2e/**/*.js',
|
|
'docs/app/e2e/**/*.scenario.js'
|
|
];
|
|
|
|
config.capabilities = {
|
|
browserName: 'chrome',
|
|
};
|
|
|
|
exports.config = config;
|