From 6c1667d80b568c5c9b3729e9c9065936dd4ba22a Mon Sep 17 00:00:00 2001 From: Wyatt Johnson Date: Mon, 12 Feb 2018 19:11:28 -0700 Subject: [PATCH] patched test --- test/server/graph/context.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/server/graph/context.js b/test/server/graph/context.js index f1244c3e8..d2b6af76f 100644 --- a/test/server/graph/context.js +++ b/test/server/graph/context.js @@ -39,7 +39,7 @@ describe('graph.Context', () => { }); it('creates a context without a user', done => { - expect(c).to.not.have.property('user'); + expect(c).to.have.property('user', null); done(); });