Skip to content

Commit b5c3a82

Browse files
committed
spidermonkey is also buggy
1 parent 26a637c commit b5c3a82

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/base64.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ describe('fromBase64', () => {
5656
...['a-+a', 'aa+_', 'aa_/', '-a/a'], // mixed base64/base64url
5757
...['aa=='], // non-strict
5858
]) {
59-
if (Uint8Array.fromBase64 && !['jsc', 'webkit'].includes(process.env.EXODUS_TEST_PLATFORM)) {
59+
if (Uint8Array.fromBase64 && !['jsc', 'webkit', 'spidermonkey'].includes(process.env.EXODUS_TEST_PLATFORM)) {
6060
t.assert.throws(() => Uint8Array.fromBase64(input, { lastChunkEncoding: 'strict' }))
6161
t.assert.throws(() => Uint8Array.fromBase64(input, { lastChunkEncoding: 'strict', alphabet: 'base64' }))
6262
t.assert.throws(() => Uint8Array.fromBase64(input, { lastChunkEncoding: 'strict', alphabet: 'base64url' }))

0 commit comments

Comments
 (0)