Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a094265 commit 0b034a9Copy full SHA for 0b034a9
libs/template/schematics/src/migrations/update-1-0-0/index.spec.ts
@@ -8,6 +8,12 @@ import * as path from 'path';
8
describe('Template Migration 1.0.0', () => {
9
let appTree: UnitTestTree;
10
11
+ /* Increase Jest timeout because of long living tests. */
12
+ beforeAll(() => jest.setTimeout(10_000));
13
+
14
+ /* Reset default timeout to 5s. */
15
+ afterAll(() => jest.setTimeout(5_000));
16
17
it('should replace LetModule + LetDirective module specifier', async () => {
18
appTree = await setupTestFile(`
19
import { NgModule } from '@angular/core';
0 commit comments