We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e78d663 commit 62f92feCopy full SHA for 62f92fe
1 file changed
src/type/__tests__/scalars-test.ts
@@ -192,6 +192,7 @@ describe('Type System: Specified scalar types', () => {
192
expect(parseValue(-1)).to.equal(-1);
193
expect(parseValue(0.1)).to.equal(0.1);
194
expect(parseValue(Math.PI)).to.equal(Math.PI);
195
+ expect(parseValue(1n)).to.equal(1);
196
197
expect(() => parseValue(NaN)).to.throw(
198
'Float cannot represent non numeric value: NaN',
0 commit comments