Skip to content
This repository has been archived by the owner on Oct 15, 2020. It is now read-only.

Commit

Permalink
test: disable N-API test
Browse files Browse the repository at this point in the history
The test failure is being tracked by
nodejs/abi-stable-node#236

PR-URL: #288
Reviewed-By: Kunal Pathak <[email protected]>
  • Loading branch information
kfarnung committed Jun 7, 2017
1 parent 715199c commit a7fc0fe
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions test/addons-napi/test_general/testInstanceOf.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@ if (typeof Symbol !== 'undefined' && 'hasInstance' in Symbol &&
compareToNative(x, MySubClass);
compareToNative(y, MySubClass);
compareToNative(x, MyClass);
compareToNative(y, MyClass);
// TODO: https://github.com/nodejs/abi-stable-node/issues/236
// compareToNative(y, MyClass);

x = new MyClass();
y = new MyClass();
Expand All @@ -83,5 +84,6 @@ if (typeof Symbol !== 'undefined' && 'hasInstance' in Symbol &&
compareToNative(x, MySubClass);
compareToNative(y, MySubClass);
compareToNative(x, MyClass);
compareToNative(y, MyClass);
// TODO: https://github.com/nodejs/abi-stable-node/issues/236
// compareToNative(y, MyClass);
}

0 comments on commit a7fc0fe

Please sign in to comment.