Skip to content

Commit 6e10def

Browse files
ci: increase timeout for specific type tests (#5105)
1 parent 6ea9dcc commit 6e10def

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

modules/component/spec/types/let.directive.types.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ describe('LetDirective', () => {
2727
'User',
2828
'interface User { name: string; }'
2929
).toBeInferredAs('User');
30-
}, 8_000);
30+
}, 30_000);
3131

3232
it('should infer the value when potential observable is a union of non-observables', () => {
3333
expectPotentialObservable(

modules/component/spec/types/push.pipe.types.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ describe('PushPipe', () => {
2424
'Book',
2525
'interface Book { title: string; }'
2626
).toBeInferredAs('Book');
27-
}, 8_000);
27+
}, 30_000);
2828

2929
it('should infer the result when potential observable is a union of non-observables', () => {
3030
expectPotentialObservable('number | { x: symbol; } | null').toBeInferredAs(

modules/effects/spec/types/effect_creator.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ describe('createEffect()', () => {
2424
`).toFail(
2525
/Type 'Observable<{ foo: string; }>' is not assignable to type 'EffectResult<Action<string>>'./
2626
);
27-
});
27+
}, 10_000);
2828

2929
it('should help with action creator that is not called', () => {
3030
// Action creator is called with parentheses.

modules/effects/spec/types/effects_module.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ describe('EffectsModule()', () => {
2828
expectSnippet(`
2929
EffectsModule.forRoot();
3030
`).toSucceed();
31-
});
31+
}, 10_000);
3232

3333
it('should compile with a single effects class', () => {
3434
expectSnippet(`

0 commit comments

Comments
 (0)