diff --git a/spec/ParseGraphQLServer.spec.js b/spec/ParseGraphQLServer.spec.js index 559252252a..bb6d2702aa 100644 --- a/spec/ParseGraphQLServer.spec.js +++ b/spec/ParseGraphQLServer.spec.js @@ -7040,7 +7040,7 @@ describe('ParseGraphQLServer', () => { options: { anOption: true }, }; - it('should create user and return authData response', async () => { + fit('should create user and return authData response', async () => { parseServer = await global.reconfigureServer({ publicServerURL: 'http://localhost:13377/parse', auth: { @@ -7073,6 +7073,11 @@ describe('ParseGraphQLServer', () => { }, }, }, + context: { + headers: { + 'X-Parse-Master-Key': 'test', + }, + }, }); expect(result.data.createUser.clientMutationId).toEqual(clientMutationId);