Skip to content

Commit

Permalink
Remove tick()
Browse files Browse the repository at this point in the history
  • Loading branch information
abeisgoat committed Jun 8, 2016
1 parent 9e1fad6 commit 239a3a8
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions tests/unit/utils.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -339,8 +339,6 @@ describe('$firebaseUtils', function () {
expect(whiteSpy).toHaveBeenCalled();
done();
});

// tick();
});

it('saves the data', function(done) {
Expand All @@ -361,8 +359,6 @@ describe('$firebaseUtils', function () {
expect(blackSpy).toHaveBeenCalled();
done();
});

// tick();
});

it('only affects query keys when using a query', function(done) {
Expand Down Expand Up @@ -399,13 +395,10 @@ describe('$firebaseUtils', function () {
expect(whiteSpy).toHaveBeenCalled();
done();
});

// tick();
});

it('removes the data', function(done) {
return ref.set(MOCK_DATA).then(function() {
// tick();
return $utils.doRemove(ref);
}).then(function () {
return ref.once('value');
Expand All @@ -431,8 +424,6 @@ describe('$firebaseUtils', function () {
expect(blackSpy).toHaveBeenCalledWith(err);
done();
});

// tick();
});

it('only removes keys in query when query is used', function(done){
Expand Down

0 comments on commit 239a3a8

Please sign in to comment.