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 413cec2 commit c6164e3Copy full SHA for c6164e3
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