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.
1 parent a983969 commit 4b63d16Copy full SHA for 4b63d16
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