Skip to content

Commit

Permalink
Fix test to ensure multifetch doesn't call iteslf
Browse files Browse the repository at this point in the history
  • Loading branch information
willfrew committed Mar 9, 2015
1 parent 71f5a4f commit f71d08b
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions test/integration/multifetch.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -311,10 +311,14 @@ describe('multifetch', function() {
});
});

it('should ignore multifetch resource', function() {
it('should be a successful response', function() {
chai.expect(body).to.have.property('_error', false);
});

it('should ignore multifetch resource', function() {
chai.expect(body).not.to.have.property('multifetch');
});

it('should contain user album', function() {
chai.expect(body)
.to.have.property('album')
Expand Down Expand Up @@ -348,7 +352,7 @@ describe('multifetch', function() {
});
});

it('should ignore multifetch resource', function() {
it('should be a successful response', function() {
chai.expect(body).to.have.property('_error', false);
});

Expand Down

0 comments on commit f71d08b

Please sign in to comment.