We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a983969 + 4b63d16 commit 43f19c5Copy full SHA for 43f19c5
src/utilities/__tests__/extendSchema.js
@@ -100,7 +100,7 @@ describe('extendSchema', () => {
100
`);
101
const originalPrint = printSchema(testSchema);
102
const extendedSchema = extendSchema(testSchema, ast);
103
- expect(extendSchema).to.not.equal(testSchema);
+ expect(extendedSchema).to.not.equal(testSchema);
104
expect(printSchema(testSchema)).to.equal(originalPrint);
105
expect(printSchema(extendedSchema)).to.contain('newField');
106
expect(printSchema(testSchema)).to.not.contain('newField');
0 commit comments