Skip to content

Commit 9240698

Browse files
authored
test(reactivity): bigint test for non-observable values (#6177)
1 parent 788527e commit 9240698

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

packages/reactivity/__tests__/reactive.spec.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -233,6 +233,9 @@ describe('reactivity/reactive', () => {
233233
// symbol
234234
const s = Symbol()
235235
assertValue(s)
236+
// bigint
237+
const bn = BigInt('9007199254740991')
238+
assertValue(bn)
236239

237240
// built-ins should work and return same value
238241
const p = Promise.resolve()

0 commit comments

Comments
 (0)