diff --git a/test/sanity-check/api/oauth-test.js b/test/sanity-check/api/oauth-test.js index 53712229..a44b08f3 100644 --- a/test/sanity-check/api/oauth-test.js +++ b/test/sanity-check/api/oauth-test.js @@ -33,7 +33,7 @@ describe('OAuth Authentication API Test', () => { it('should get Current user info test', done => { client.getUser().then((user) => { - expect(user.uid).not.to.be(undefined) + expect(user.uid).to.not.be.equal(undefined) done() }) .catch(done)