Skip to content

Commit

Permalink
Add comment to make test better understandable (#1850)
Browse files Browse the repository at this point in the history
  • Loading branch information
Cito authored and IvanGoncharov committed May 6, 2019
1 parent 9ab5dfb commit d69c533
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/utilities/__tests__/buildASTSchema-test.js
Expand Up @@ -116,6 +116,7 @@ describe('Schema Builder', () => {
}
`);

// String and Boolean are always included through introspection types
expect(schema.getType('Int')).to.equal(undefined);
expect(schema.getType('Float')).to.equal(undefined);
expect(schema.getType('ID')).to.equal(undefined);
Expand Down
1 change: 1 addition & 0 deletions src/utilities/__tests__/extendSchema-test.js
Expand Up @@ -277,6 +277,7 @@ describe('extendSchema', () => {
}
`);

// String and Boolean are always included through introspection types
expect(schema.getType('Int')).to.equal(undefined);
expect(schema.getType('Float')).to.equal(undefined);
expect(schema.getType('String')).to.equal(GraphQLString);
Expand Down

0 comments on commit d69c533

Please sign in to comment.