Skip to content

Commit

Permalink
chore: do not restrict to single test
Browse files Browse the repository at this point in the history
Signed-off-by: Ingo Bürk <[email protected]>
  • Loading branch information
Airblader committed Jan 19, 2020
1 parent 2c0f93f commit 10d9425
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions projects/ngqp/core/src/test/bug-148.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ describe('ngqp', () => {
fixture.detectChanges();
});

fit('emits with single and multi params if the multi param has no value set', fakeAsync(() => {
it('emits with single and multi params if the multi param has no value set', fakeAsync(() => {
scheduler.run(({ expectObservable }) => {
const valueChange$ = captureObservable(component.paramGroup.valueChanges);

Expand All @@ -76,4 +76,4 @@ describe('ngqp', () => {
expectObservable(valueChange$).toBe('a', { a: { singleParam: 'Test', multiParam: [] } });
});
}));
});
});

0 comments on commit 10d9425

Please sign in to comment.