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 4cd714d commit 747a55fCopy full SHA for 747a55f
tests/e2e/tests/build/rebuild-deps-type-check.ts
@@ -41,6 +41,7 @@ export default function() {
41
// Should trigger a rebuild, no error expected.
42
.then(() => execAndWaitForOutputToMatch('ng', ['serve'], doneRe))
43
// Make an invalid version of the file.
44
+ .then(() => wait(2000))
45
.then(() => writeFile('src/funky2.ts', `
46
export function funky2(value: number): number {
47
return value + 1;
@@ -66,6 +67,7 @@ export default function() {
66
67
}
68
})
69
// Fix the error!
70
71
72
export function funky2(value: string): string {
73
return value + 'hello';
0 commit comments