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 c3c41fc commit 4d2477aCopy full SHA for 4d2477a
packages/utils/test/normalize.test.ts
@@ -290,6 +290,8 @@ describe('normalize()', () => {
290
test('primitive values', () => {
291
expect(normalize(undefined)).toEqual('[undefined]');
292
expect(normalize(NaN)).toEqual('[NaN]');
293
+ expect(normalize(Symbol('dogs'))).toEqual('[Symbol(dogs)]');
294
+ expect(normalize(BigInt(1121201212312012))).toEqual('[BigInt: 1121201212312012]');
295
});
296
297
test('functions', () => {
0 commit comments