Skip to content

Commit ca6659d

Browse files
committed
test
1 parent 059c1a6 commit ca6659d

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

spec/ParseGraphQLServer.spec.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9554,6 +9554,16 @@ describe('ParseGraphQLServer', () => {
95549554
});
95559555

95569556
it_only_db('mongo')('should support deep nested creation', async () => {
9557+
parseServer = await global.reconfigureServer({
9558+
maintenanceKey: 'test2',
9559+
maxUploadSize: '1kb',
9560+
requestComplexity: { includeDepth: 10 },
9561+
});
9562+
parseGraphQLServer = new ParseGraphQLServer(parseServer, {
9563+
graphQLPath: '/graphql',
9564+
playgroundPath: '/playground',
9565+
subscriptionsPath: '/subscriptions',
9566+
});
95579567
const team = new Parse.Object('Team');
95589568
team.set('name', 'imATeam1');
95599569
await team.save();

0 commit comments

Comments
 (0)