File tree Expand file tree Collapse file tree 3 files changed +27
-0
lines changed
packages/angular_devkit/build_angular/src/builders/ssr-dev-server/specs Expand file tree Collapse file tree 3 files changed +27
-0
lines changed Original file line number Diff line number Diff line change @@ -15,8 +15,17 @@ import { SSRDevServerBuilderOutput } from '../index';
15
15
16
16
describe ( 'Serve SSR Builder' , ( ) => {
17
17
const target = { project : 'app' , target : 'serve-ssr' } ;
18
+ const originalTimeout = jasmine . DEFAULT_TIMEOUT_INTERVAL ;
18
19
let architect : Architect ;
19
20
21
+ beforeAll ( ( ) => {
22
+ jasmine . DEFAULT_TIMEOUT_INTERVAL = 100_000 ;
23
+ } ) ;
24
+
25
+ afterAll ( ( ) => {
26
+ jasmine . DEFAULT_TIMEOUT_INTERVAL = originalTimeout ;
27
+ } ) ;
28
+
20
29
beforeEach ( async ( ) => {
21
30
await host . initialize ( ) . toPromise ( ) ;
22
31
architect = ( await createArchitect ( host . root ( ) ) ) . architect ;
Original file line number Diff line number Diff line change @@ -15,8 +15,17 @@ import { SSRDevServerBuilderOutput } from '../index';
15
15
16
16
describe ( 'Serve SSR Builder' , ( ) => {
17
17
const target = { project : 'app' , target : 'serve-ssr' } ;
18
+ const originalTimeout = jasmine . DEFAULT_TIMEOUT_INTERVAL ;
18
19
let architect : Architect ;
19
20
21
+ beforeAll ( ( ) => {
22
+ jasmine . DEFAULT_TIMEOUT_INTERVAL = 100_000 ;
23
+ } ) ;
24
+
25
+ afterAll ( ( ) => {
26
+ jasmine . DEFAULT_TIMEOUT_INTERVAL = originalTimeout ;
27
+ } ) ;
28
+
20
29
beforeEach ( async ( ) => {
21
30
await host . initialize ( ) . toPromise ( ) ;
22
31
architect = ( await createArchitect ( host . root ( ) ) ) . architect ;
Original file line number Diff line number Diff line change @@ -14,8 +14,17 @@ import { SSRDevServerBuilderOutput } from '../index';
14
14
15
15
describe ( 'Serve SSR Builder' , ( ) => {
16
16
const target = { project : 'app' , target : 'serve-ssr' } ;
17
+ const originalTimeout = jasmine . DEFAULT_TIMEOUT_INTERVAL ;
17
18
let architect : Architect ;
18
19
20
+ beforeAll ( ( ) => {
21
+ jasmine . DEFAULT_TIMEOUT_INTERVAL = 100_000 ;
22
+ } ) ;
23
+
24
+ afterAll ( ( ) => {
25
+ jasmine . DEFAULT_TIMEOUT_INTERVAL = originalTimeout ;
26
+ } ) ;
27
+
19
28
beforeEach ( async ( ) => {
20
29
await host . initialize ( ) . toPromise ( ) ;
21
30
architect = ( await createArchitect ( host . root ( ) ) ) . architect ;
You can’t perform that action at this time.
0 commit comments