From 2a76f0c8cf09b6bd8287e1de3d62ade6e17e6769 Mon Sep 17 00:00:00 2001 From: Keith Holliday Date: Tue, 2 Aug 2016 14:29:15 -0500 Subject: [PATCH] Added lint ignore comment --- .../v3/integration/user/auth/POST-user_auth_social.test.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/api/v3/integration/user/auth/POST-user_auth_social.test.js b/test/api/v3/integration/user/auth/POST-user_auth_social.test.js index 480b680161..4bcd7b09fe 100644 --- a/test/api/v3/integration/user/auth/POST-user_auth_social.test.js +++ b/test/api/v3/integration/user/auth/POST-user_auth_social.test.js @@ -24,7 +24,7 @@ describe('POST /user/auth/social', () => { it('fails if network is not facebook', async () => { await expect(api.post(endpoint, { - authResponse: {access_token: randomAccessToken}, + authResponse: {access_token: randomAccessToken}, // eslint-disable-line camelcase network: 'NotFacebook', })).to.eventually.be.rejected.and.eql({ code: 401, @@ -35,7 +35,7 @@ describe('POST /user/auth/social', () => { it('registers a new user', async () => { let response = await api.post(endpoint, { - authResponse: {access_token: randomAccessToken}, + authResponse: {access_token: randomAccessToken}, // eslint-disable-line camelcase network, }); @@ -48,7 +48,7 @@ describe('POST /user/auth/social', () => { await user.update({ 'auth.facebook.id': facebookId }); let response = await api.post(endpoint, { - authResponse: {access_token: randomAccessToken}, + authResponse: {access_token: randomAccessToken}, // eslint-disable-line camelcase network, });