Skip to content

Commit 01b8880

Browse files
authored
test(firefox): disable BigInt tests for Firefox (#4849)
Juggler doesn't yet support BigInt transferring.
1 parent f595bc0 commit 01b8880

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: test/evaluation.spec.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ module.exports.addTests = function({testRunner, expect}) {
3535
const result = await page.evaluate(() => 7 * 3);
3636
expect(result).toBe(21);
3737
});
38-
(bigint ? it : xit)('should transfer BigInt', async({page, server}) => {
38+
(bigint ? it_fails_ffox : xit)('should transfer BigInt', async({page, server}) => {
3939
const result = await page.evaluate(a => a, BigInt(42));
4040
expect(result).toBe(BigInt(42));
4141
});
@@ -143,7 +143,7 @@ module.exports.addTests = function({testRunner, expect}) {
143143
expect(result).not.toBe(object);
144144
expect(result).toEqual(object);
145145
});
146-
(bigint ? it : xit)('should return BigInt', async({page, server}) => {
146+
(bigint ? it_fails_ffox : xit)('should return BigInt', async({page, server}) => {
147147
const result = await page.evaluate(() => BigInt(42));
148148
expect(result).toBe(BigInt(42));
149149
});

0 commit comments

Comments
 (0)