We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b35994 commit 7e8a609Copy full SHA for 7e8a609
test/common/sea.js
@@ -50,6 +50,14 @@ function skipIfSingleExecutableIsNotSupported() {
50
common.skip('UndefinedBehavior Sanitizer is not supported');
51
}
52
53
+ try {
54
+ readFileSync(process.execPath);
55
+ } catch (e) {
56
+ if (e.code === 'ERR_FS_FILE_TOO_LARGE') {
57
+ common.skip('The Node.js binary is too large to be supported by postject');
58
+ }
59
60
+
61
tmpdir.refresh();
62
63
// The SEA tests involve making a copy of the executable and writing some fixtures
0 commit comments