Skip to content

Commit

Permalink
fix(test): to.be.empty -> to.be.undefined
Browse files Browse the repository at this point in the history
  • Loading branch information
znarf committed Jan 3, 2019
1 parent eddda0b commit 8b50eed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/graphql.addFunds.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ describe('graphql.addFunds', () => {

// Then it should be a successful call
gqlResult.errors && console.error(gqlResult.errors[0]);
expect(gqlResult.errors).to.be.empty;
expect(gqlResult.errors).to.be.undefined;

// And then there should be a new payment method created in the
// database
Expand Down

0 comments on commit 8b50eed

Please sign in to comment.