From 8b50eed61a0a3b426832700b6bd2aca1985e71a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Franc=CC=A7ois=20Hodierne?= Date: Thu, 3 Jan 2019 01:20:39 +0100 Subject: [PATCH] fix(test): to.be.empty -> to.be.undefined --- test/graphql.addFunds.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/graphql.addFunds.test.js b/test/graphql.addFunds.test.js index 1b5e7b0b3df8..a11f1f669185 100644 --- a/test/graphql.addFunds.test.js +++ b/test/graphql.addFunds.test.js @@ -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