Skip to content

Commit

Permalink
test(debounce): rename and comment test
Browse files Browse the repository at this point in the history
  • Loading branch information
cartant committed Jan 19, 2018
1 parent 5a633f9 commit 54e6bef
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion spec/operators/debounce-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,11 @@ describe('Observable.prototype.debounce', () => {
expectSubscriptions(e1.subscriptions).toBe(e1subs);
});

it('should debounce by scalar selector observable', () => {
it('should support a scalar selector observable', () => {

// If the selector returns a scalar observable, the debounce operator
// should emit the value immediately.

const e1 = hot('--a--bc--d----|');
const e1subs = '^ !';
const expected = '--a--bc--d----|';
Expand Down

0 comments on commit 54e6bef

Please sign in to comment.