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';
1515
1616describe ( 'Serve SSR Builder' , ( ) => {
1717 const target = { project : 'app' , target : 'serve-ssr' } ;
18+ const originalTimeout = jasmine . DEFAULT_TIMEOUT_INTERVAL ;
1819 let architect : Architect ;
1920
21+ beforeAll ( ( ) => {
22+ jasmine . DEFAULT_TIMEOUT_INTERVAL = 100_000 ;
23+ } ) ;
24+
25+ afterAll ( ( ) => {
26+ jasmine . DEFAULT_TIMEOUT_INTERVAL = originalTimeout ;
27+ } ) ;
28+
2029 beforeEach ( async ( ) => {
2130 await host . initialize ( ) . toPromise ( ) ;
2231 architect = ( await createArchitect ( host . root ( ) ) ) . architect ;
Original file line number Diff line number Diff line change @@ -15,8 +15,17 @@ import { SSRDevServerBuilderOutput } from '../index';
1515
1616describe ( 'Serve SSR Builder' , ( ) => {
1717 const target = { project : 'app' , target : 'serve-ssr' } ;
18+ const originalTimeout = jasmine . DEFAULT_TIMEOUT_INTERVAL ;
1819 let architect : Architect ;
1920
21+ beforeAll ( ( ) => {
22+ jasmine . DEFAULT_TIMEOUT_INTERVAL = 100_000 ;
23+ } ) ;
24+
25+ afterAll ( ( ) => {
26+ jasmine . DEFAULT_TIMEOUT_INTERVAL = originalTimeout ;
27+ } ) ;
28+
2029 beforeEach ( async ( ) => {
2130 await host . initialize ( ) . toPromise ( ) ;
2231 architect = ( await createArchitect ( host . root ( ) ) ) . architect ;
Original file line number Diff line number Diff line change @@ -14,8 +14,17 @@ import { SSRDevServerBuilderOutput } from '../index';
1414
1515describe ( 'Serve SSR Builder' , ( ) => {
1616 const target = { project : 'app' , target : 'serve-ssr' } ;
17+ const originalTimeout = jasmine . DEFAULT_TIMEOUT_INTERVAL ;
1718 let architect : Architect ;
1819
20+ beforeAll ( ( ) => {
21+ jasmine . DEFAULT_TIMEOUT_INTERVAL = 100_000 ;
22+ } ) ;
23+
24+ afterAll ( ( ) => {
25+ jasmine . DEFAULT_TIMEOUT_INTERVAL = originalTimeout ;
26+ } ) ;
27+
1928 beforeEach ( async ( ) => {
2029 await host . initialize ( ) . toPromise ( ) ;
2130 architect = ( await createArchitect ( host . root ( ) ) ) . architect ;
You can’t perform that action at this time.
0 commit comments