node-aix-ppc64 24.6.0 → 24.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +364 -0
- package/README.md +2 -0
- package/bin/node +0 -0
- package/include/node/common.gypi +13 -3
- package/include/node/config.gypi +9 -0
- package/include/node/node.exp +372 -86
- package/include/node/node.h +6 -0
- package/include/node/node_version.h +1 -1
- package/package.json +1 -1
- package/share/man/man1/node.1 +4 -0
package/include/node/node.h
CHANGED
|
@@ -758,6 +758,12 @@ NODE_EXTERN std::unique_ptr<InspectorParentHandle> GetInspectorParentHandle(
|
|
|
758
758
|
const char* child_url,
|
|
759
759
|
const char* name);
|
|
760
760
|
|
|
761
|
+
NODE_EXTERN std::unique_ptr<InspectorParentHandle> GetInspectorParentHandle(
|
|
762
|
+
Environment* parent_env,
|
|
763
|
+
ThreadId child_thread_id,
|
|
764
|
+
std::string_view child_url,
|
|
765
|
+
std::string_view name);
|
|
766
|
+
|
|
761
767
|
struct StartExecutionCallbackInfo {
|
|
762
768
|
v8::Local<v8::Object> process_object;
|
|
763
769
|
v8::Local<v8::Function> native_require;
|
package/package.json
CHANGED
package/share/man/man1/node.1
CHANGED
|
@@ -490,6 +490,10 @@ A test reporter to use when running tests.
|
|
|
490
490
|
.It Fl -test-reporter-destination
|
|
491
491
|
The destination for the corresponding test reporter.
|
|
492
492
|
.
|
|
493
|
+
.It Fl -test-rerun-failures
|
|
494
|
+
Configures the tests runner to persist the state of tests to allow
|
|
495
|
+
rerunning only failed tests.
|
|
496
|
+
.
|
|
493
497
|
.It Fl -test-only
|
|
494
498
|
Configures the test runner to only execute top level tests that have the `only`
|
|
495
499
|
option set.
|