Skip to content

Commit

Permalink
[TEMPORARY FOR FREEBSD CI]
Browse files Browse the repository at this point in the history
  • Loading branch information
jasnell committed Mar 24, 2021
1 parent 99f1670 commit 8b8e731
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions test/js-native-api/test_object/test.js
Expand Up @@ -296,6 +296,16 @@ assert.deepStrictEqual(test_object.TestGetProperty(), {
obj.x = 'd';
}

// TODO(@jasnell): For some reason that is as yet unknown,
// https://github.com/nodejs/node/pull/37786, which makes the
// atob and btoa functions global, causes this test to fail
// persistently on FreeBSD, and only on FreeBSD, despite the
// fact that https://github.com/nodejs/node/pull/37786 does
// not touch anything that should impact this test and this
// test does not use atob or btoa at all.
if (common.isFreeBSD)
common.skip('Skips bits that are failing on FreeBSD for no obvious reason.');

{
const obj = { x: 10, y: 10, z: 10 };

Expand Down

0 comments on commit 8b8e731

Please sign in to comment.