Skip to content

Commit d29f83b

Browse files
committed
correct test
1 parent 73f4379 commit d29f83b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spec/ParseGraphQLSchema.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ describe('ParseGraphQLSchema', () => {
5555
const updatedGraphQLSchema = await parseGraphQLSchema.load();
5656
expect(graphQLSchema).toBe(updatedGraphQLSchema);
5757
await new Promise(resolve => setTimeout(resolve, 200));
58-
expect(graphQLSchema).toBe(await parseGraphQLSchema.load());
58+
expect(graphQLSchema).not.toBe(await parseGraphQLSchema.load());
5959
});
6060

6161
it('should load a brand new GraphQL Schema if Parse Schema changes', async () => {

0 commit comments

Comments
 (0)