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.
2 parents 413cec2 + c6164e3 commit 8a787beCopy full SHA for 8a787be
e2e/tests-app-ng/app/list-view/async-pipe-template.component.ts
@@ -43,10 +43,13 @@ export class ListViewAsyncPipeComponent {
43
counter++;
44
items.push(new DataItem(counter, "data item " + counter));
45
subscr.next(items);
46
+ if (counter == 11) {
47
+ clearInterval(intervalId);
48
+ }
49
}, 1000);
50
51
setTimeout(() => {
52
clearInterval(intervalId);
- }, 10000);
53
+ }, 11000);
54
}
55
0 commit comments