Skip to content

Commit

Permalink
simplify equality comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
stocaaro committed Oct 10, 2024
1 parent a6e846b commit b0073d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/graphql-generator/src/__tests__/models.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,6 @@ targets.forEach(target => {
};
const asyncGeneratorModels = await generateModels(options);
const syncGeneratorModels = generateModelsSync(options);
expect(JSON.stringify(asyncGeneratorModels)).toEqual(JSON.stringify(syncGeneratorModels));
expect(asyncGeneratorModels).toEqual(syncGeneratorModels);
});
});

0 comments on commit b0073d2

Please sign in to comment.