mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
By default this is 4 seconds. In CI we have unreliable runtime performance so we this change gives us a bit of wiggle room to validate application behaviour. PR Close #62726
16 lines
442 B
JavaScript
16 lines
442 B
JavaScript
/**
|
|
* @license
|
|
* Copyright Google LLC All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
* found in the LICENSE file at https://angular.dev/license
|
|
*/
|
|
|
|
module.exports = {
|
|
defaultCommandTimeout: 10000, // Increase the default command timeout to 10 seconds
|
|
e2e: {
|
|
specPattern: 'integration/*.e2e.js',
|
|
supportFile: 'support/index.js',
|
|
baseUrl: 'http://localhost:4200',
|
|
},
|
|
};
|