Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test_runner: run global after() hook earlier #49059

Merged
merged 1 commit into from
Aug 11, 2023

Conversation

cjihrig
Copy link
Contributor

@cjihrig cjihrig commented Aug 7, 2023

This commit moves the global after() hook execution from the 'beforeExit' event to the point where all tests have finished running. This gives the global after() a chance to clean up handles that would otherwise prevent the 'beforeExit' event from being emitted.

Fixes: #49056

@nodejs-github-bot
Copy link
Collaborator

Review requested:

  • @nodejs/test_runner

@cjihrig cjihrig requested a review from mcollina August 7, 2023 22:03
@nodejs-github-bot nodejs-github-bot added needs-ci PRs that need a full CI run. test_runner Issues and PRs related to the test runner subsystem. labels Aug 7, 2023
@MoLow
Copy link
Member

MoLow commented Aug 10, 2023

can you please also add this test? https://github.com/MoLow/node/blob/test-runner-only/test/fixtures/test-runner/output/async-test-scheduling.mjs

@cjihrig cjihrig marked this pull request as ready for review August 10, 2023 22:56
@nodejs-github-bot
Copy link
Collaborator

@nodejs-github-bot
Copy link
Collaborator

@nodejs-github-bot
Copy link
Collaborator

@nodejs-github-bot
Copy link
Collaborator

nodejs-github-bot commented Aug 11, 2023

@cjihrig cjihrig added commit-queue-squash Add this label to instruct the Commit Queue to squash all the PR commits into the first one. and removed needs-ci PRs that need a full CI run. labels Aug 11, 2023
}));

after(common.mustCall(() => {
server.close();
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@cjihrig would it be worth ensuring the after hook also waits for cb?

Suggested change
server.close();
server.close(common.mustCall());

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That's not a bad idea. Honestly though, the CI was a pain to get passing yesterday and I would prefer not to start over for that change.

Copy link
Member

@mcollina mcollina left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lgtm

@cjihrig cjihrig added the commit-queue Add this label to land a pull request using GitHub Actions. label Aug 11, 2023
@nodejs-github-bot nodejs-github-bot added commit-queue-failed An error occurred while landing this pull request using GitHub Actions. and removed commit-queue Add this label to land a pull request using GitHub Actions. labels Aug 11, 2023
@nodejs-github-bot
Copy link
Collaborator

Commit Queue failed
- Loading data for nodejs/node/pull/49059
✔  Done loading data for nodejs/node/pull/49059
----------------------------------- PR info ------------------------------------
Title      test_runner: run global after() hook earlier (#49059)
Author     Colin Ihrig  (@cjihrig)
Branch     cjihrig:after-handles -> nodejs:main
Labels     commit-queue-squash, test_runner
Commits    3
 - test_runner: run global after() hook earlier
 - test and feedback
 - other test
Committers 1
 - cjihrig 
PR-URL: https://github.com/nodejs/node/pull/49059
Fixes: https://github.com/nodejs/node/issues/49056
Reviewed-By: Chemi Atlow 
Reviewed-By: Moshe Atlow 
Reviewed-By: Matteo Collina 
Reviewed-By: Benjamin Gruenbaum 
------------------------------ Generated metadata ------------------------------
PR-URL: https://github.com/nodejs/node/pull/49059
Fixes: https://github.com/nodejs/node/issues/49056
Reviewed-By: Chemi Atlow 
Reviewed-By: Moshe Atlow 
Reviewed-By: Matteo Collina 
Reviewed-By: Benjamin Gruenbaum 
--------------------------------------------------------------------------------
   ℹ  This PR was created on Mon, 07 Aug 2023 22:03:17 GMT
   ✔  Approvals: 4
   ✔  - Chemi Atlow (@atlowChemi): https://github.com/nodejs/node/pull/49059#pullrequestreview-1573038132
   ✔  - Moshe Atlow (@MoLow) (TSC): https://github.com/nodejs/node/pull/49059#pullrequestreview-1573061500
   ✔  - Matteo Collina (@mcollina) (TSC): https://github.com/nodejs/node/pull/49059#pullrequestreview-1573130592
   ✔  - Benjamin Gruenbaum (@benjamingr) (TSC): https://github.com/nodejs/node/pull/49059#pullrequestreview-1573170558
   ✘  Last GitHub CI failed
   ℹ  Last Full PR CI on 2023-08-11T03:28:19Z: https://ci.nodejs.org/job/node-test-pull-request/53165/
- Querying data for job/node-test-pull-request/53165/
   ✔  Last Jenkins CI successful
--------------------------------------------------------------------------------
   ✔  Aborted `git node land` session in /home/runner/work/node/node/.ncu
https://github.com/nodejs/node/actions/runs/5832906334

This commit moves the global after() hook execution from the
'beforeExit' event to the point where all tests have finished
running. This gives the global after() a chance to clean up
handles that would otherwise prevent the 'beforeExit' event
from being emitted.

PR-URL: nodejs#49059
Fixes: nodejs#49056
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
@cjihrig cjihrig merged commit 6346bdc into nodejs:main Aug 11, 2023
26 of 31 checks passed
@cjihrig cjihrig deleted the after-handles branch August 11, 2023 13:17
@cjihrig
Copy link
Contributor Author

cjihrig commented Aug 11, 2023

Landed in 6346bdc.

@joyeecheung
Copy link
Member

joyeecheung commented Aug 11, 2023

Not sure why but I am now constantly failing test-runner-output.mjs locally after pulling in this change. It passed again if I revert this commit.

See stack trace
▶ test runner output
  ✔ test-runner/output/abort.js (1080.035875ms)
  ✔ test-runner/output/abort_suite.js (1100.539375ms)
  ✔ test-runner/output/abort_hooks.js (170.884375ms)
  ✔ test-runner/output/describe_it.js (725.507334ms)
  ✔ test-runner/output/describe_nested.js (119.515875ms)
  ✔ test-runner/output/hooks.js (177.523667ms)
  ✔ test-runner/output/timeout_in_before_each_should_not_affect_further_tests.js (1320.205417ms)
  ✔ test-runner/output/hooks-with-no-global-test.js (168.12325ms)
  ✔ test-runner/output/before-and-after-each-too-many-listeners.js (164.051292ms)
  ✔ test-runner/output/before-and-after-each-with-timeout-too-many-listeners.js (165.916292ms)
  ✖ test-runner/output/global_after_should_fail_the_test.js (171.50075ms)
    AssertionError [ERR_ASSERTION]: Expected values to be strictly equal:
    + actual - expected ... Lines skipped

      'this is a test\n' +
        'TAP version 13\n' +
    ...
        '  ---\n' +
        '  duration_ms: *\n' +
    -   '  ...\n' +
    -   'not ok 2 - /test/fixtures/test-runner/output/global_after_should_fail_the_test.js\n' +
    -   '  ---\n' +
    -   '  duration_ms: *\n' +
    -   "  location: '/test/fixtures/test-runner/output/global_after_should_fail_the_test.js:(LINE):1'\n" +
    -   "  failureType: 'hookFailed'\n" +
    -   "  error: 'this should fail the test'\n" +
    -   "  code: 'ERR_TEST_FAILURE'\n" +
    -   '  stack: |-\n' +
    -   '    *\n' +
    -   '    *\n' +
    -   '    *\n' +
    -   '    *\n' +
    -   '    *\n' +
    -   '    *\n' +
    -   '    *\n' +
    -   '    *\n' +
    -   '    *\n' +
        '  ...\n' +
    ...
        '# skipped 0\n' +
        '# todo 0\n' +
        '# duration_ms *\n'
        at assertSnapshot (/Users/joyee/projects/node/test/common/assertSnapshot.js:52:12)
        at async Module.spawnAndAssert (/Users/joyee/projects/node/test/common/assertSnapshot.js:80:3)
        at async TestContext.<anonymous> (file:///Users/joyee/projects/node/test/parallel/test-runner-output.mjs:95:5)
        at async Test.run (node:internal/test_runner/test:632:9)
        at async Promise.all (index 10)
        at async Suite.run (node:internal/test_runner/test:948:7)
        at async startSubtest (node:internal/test_runner/harness:208:3) {
      generatedMessage: true,
      code: 'ERR_ASSERTION',
      actual: 'this is a test\nTAP version 13\n# Subtest: this is a test\nok 1 - this is a test\n  ---\n  duration_ms: *\n  ...\n1..1\n# tests 1\n# suites 0\n...',
      expected: 'this is a test\nTAP version 13\n# Subtest: this is a test\nok 1 - this is a test\n  ---\n  duration_ms: *\n  ...\nnot ok 2 - /test/fixtures/test-runner/output/global_after_should_fail_the_test.js\n  ---\n  duration_ms: *\n...',
      operator: 'strictEqual'
    }

  ✔ test-runner/output/no_refs.js (149.993708ms)
  ✔ test-runner/output/no_tests.js (154.464834ms)
  ✔ test-runner/output/only_tests.js (169.572709ms)
  ✔ test-runner/output/dot_reporter.js (620.084375ms)
  ✔ test-runner/output/spec_reporter_successful.js (159.8035ms)
  ✔ test-runner/output/spec_reporter.js (625.975708ms)
  ✔ test-runner/output/spec_reporter_cli.js (663.377458ms)
  ✔ test-runner/output/output.js (541.202459ms)
  ✔ test-runner/output/output_cli.js (620.8815ms)
  ✔ test-runner/output/name_pattern.js (121.049417ms)
  ✔ test-runner/output/name_pattern_with_only.js (148.999583ms)
  ✔ test-runner/output/unresolved_promise.js (154.180542ms)
  ✔ test-runner/output/default_output.js (201.822875ms)
  ✔ test-runner/output/arbitrary-output.js (182.5105ms)
  ✔ test-runner/output/async-test-scheduling.mjs (156.54525ms)
  ✔ test-runner/output/arbitrary-output-colored.js (342.718166ms)
  ✔ test-runner/output/dot_output_custom_columns.js (207.744791ms)
  ✔ test-runner/output/tap_escape.js (130.406458ms)
▶ test runner output (1326.1695ms)

ℹ tests 29
ℹ suites 1
ℹ pass 28
ℹ fail 1
ℹ cancelled 0
ℹ skipped 0
ℹ todo 0
ℹ duration_ms 1328.780583

✖ failing tests:

test at file:/Users/joyee/projects/node/test/parallel/test-runner-output.mjs:101:5
✖ test-runner/output/global_after_should_fail_the_test.js (171.50075ms)
  AssertionError [ERR_ASSERTION]: Expected values to be strictly equal:
  + actual - expected ... Lines skipped

    'this is a test\n' +
      'TAP version 13\n' +
  ...
      '  ---\n' +
      '  duration_ms: *\n' +
  -   '  ...\n' +
  -   'not ok 2 - /test/fixtures/test-runner/output/global_after_should_fail_the_test.js\n' +
  -   '  ---\n' +
  -   '  duration_ms: *\n' +
  -   "  location: '/test/fixtures/test-runner/output/global_after_should_fail_the_test.js:(LINE):1'\n" +
  -   "  failureType: 'hookFailed'\n" +
  -   "  error: 'this should fail the test'\n" +
  -   "  code: 'ERR_TEST_FAILURE'\n" +
  -   '  stack: |-\n' +
  -   '    *\n' +
  -   '    *\n' +
  -   '    *\n' +
  -   '    *\n' +
  -   '    *\n' +
  -   '    *\n' +
  -   '    *\n' +
  -   '    *\n' +
  -   '    *\n' +
      '  ...\n' +
  ...
      '# skipped 0\n' +
      '# todo 0\n' +
      '# duration_ms *\n'
      at assertSnapshot (/Users/joyee/projects/node/test/common/assertSnapshot.js:52:12)
      at async Module.spawnAndAssert (/Users/joyee/projects/node/test/common/assertSnapshot.js:80:3)
      at async TestContext.<anonymous> (file:///Users/joyee/projects/node/test/parallel/test-runner-output.mjs:95:5)
      at async Test.run (node:internal/test_runner/test:632:9)
      at async Promise.all (index 10)
      at async Suite.run (node:internal/test_runner/test:948:7)
      at async startSubtest (node:internal/test_runner/harness:208:3) {
    generatedMessage: true,
    code: 'ERR_ASSERTION',
    actual: 'this is a test\nTAP version 13\n# Subtest: this is a test\nok 1 - this is a test\n  ---\n  duration_ms: *\n  ...\n1..1\n# tests 1\n# suites 0\n...',
    expected: 'this is a test\nTAP version 13\n# Subtest: this is a test\nok 1 - this is a test\n  ---\n  duration_ms: *\n  ...\nnot ok 2 - /test/fixtures/test-runner/output/global_after_should_fail_the_test.js\n  ---\n  duration_ms: *\n...',
    operator: 'strictEqual'
  }

I am on Apple M2 Max with macOS 13.4 though not sure how relevant that is.

@cjihrig
Copy link
Contributor Author

cjihrig commented Aug 11, 2023

FWIW, here is the fix before the revert:

diff --git a/lib/internal/test_runner/test.js b/lib/internal/test_runner/test.js
index f8c9087f6c..975ad4ac08 100644
--- a/lib/internal/test_runner/test.js
+++ b/lib/internal/test_runner/test.js
@@ -662,7 +662,7 @@ class Test extends AsyncResource {
       }
     }
 
-    if (this.parent !== null) {
+    if (this.parent !== null || typeof this.hookType === 'string') {
       // Clean up the test. Then, try to report the results and execute any
       // tests that were pending due to available concurrency.
       //

cjihrig added a commit to cjihrig/node that referenced this pull request Aug 12, 2023
This commit reverts the revert in
bb52656. It also includes the
fix for the issue that required the revert
(nodejs#49059 (comment))
and an additional common.mustCall() in the added test.

Refs: nodejs#49059
Refs: nodejs#49110
martenrichter pushed a commit to martenrichter/node that referenced this pull request Aug 13, 2023
This commit moves the global after() hook execution from the
'beforeExit' event to the point where all tests have finished
running. This gives the global after() a chance to clean up
handles that would otherwise prevent the 'beforeExit' event
from being emitted.

PR-URL: nodejs#49059
Fixes: nodejs#49056
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
nodejs-github-bot pushed a commit that referenced this pull request Aug 14, 2023
This commit reverts the revert in
bb52656. It also includes the
fix for the issue that required the revert
(#49059 (comment))
and an additional common.mustCall() in the added test.

Refs: #49059
Refs: #49110
PR-URL: #49116
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Ceres6 pushed a commit to Ceres6/node that referenced this pull request Aug 14, 2023
This commit moves the global after() hook execution from the
'beforeExit' event to the point where all tests have finished
running. This gives the global after() a chance to clean up
handles that would otherwise prevent the 'beforeExit' event
from being emitted.

PR-URL: nodejs#49059
Fixes: nodejs#49056
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Ceres6 pushed a commit to Ceres6/node that referenced this pull request Aug 14, 2023
This commit moves the global after() hook execution from the
'beforeExit' event to the point where all tests have finished
running. This gives the global after() a chance to clean up
handles that would otherwise prevent the 'beforeExit' event
from being emitted.

PR-URL: nodejs#49059
Fixes: nodejs#49056
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Ceres6 pushed a commit to Ceres6/node that referenced this pull request Aug 14, 2023
This commit reverts the revert in
bb52656. It also includes the
fix for the issue that required the revert
(nodejs#49059 (comment))
and an additional common.mustCall() in the added test.

Refs: nodejs#49059
Refs: nodejs#49110
PR-URL: nodejs#49116
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
RafaelGSS pushed a commit that referenced this pull request Aug 15, 2023
This commit moves the global after() hook execution from the
'beforeExit' event to the point where all tests have finished
running. This gives the global after() a chance to clean up
handles that would otherwise prevent the 'beforeExit' event
from being emitted.

PR-URL: #49059
Fixes: #49056
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
RafaelGSS pushed a commit that referenced this pull request Aug 15, 2023
This commit reverts the revert in
bb52656. It also includes the
fix for the issue that required the revert
(#49059 (comment))
and an additional common.mustCall() in the added test.

Refs: #49059
Refs: #49110
PR-URL: #49116
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
@UlisesGascon UlisesGascon mentioned this pull request Aug 15, 2023
RafaelGSS pushed a commit to RafaelGSS/node that referenced this pull request Aug 15, 2023
This commit moves the global after() hook execution from the
'beforeExit' event to the point where all tests have finished
running. This gives the global after() a chance to clean up
handles that would otherwise prevent the 'beforeExit' event
from being emitted.

PR-URL: nodejs#49059
Fixes: nodejs#49056
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
RafaelGSS pushed a commit to RafaelGSS/node that referenced this pull request Aug 15, 2023
This commit reverts the revert in
bb52656. It also includes the
fix for the issue that required the revert
(nodejs#49059 (comment))
and an additional common.mustCall() in the added test.

Refs: nodejs#49059
Refs: nodejs#49110
PR-URL: nodejs#49116
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
rluvaton pushed a commit to rluvaton/node that referenced this pull request Aug 15, 2023
This commit moves the global after() hook execution from the
'beforeExit' event to the point where all tests have finished
running. This gives the global after() a chance to clean up
handles that would otherwise prevent the 'beforeExit' event
from being emitted.

PR-URL: nodejs#49059
Fixes: nodejs#49056
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
rluvaton pushed a commit to rluvaton/node that referenced this pull request Aug 15, 2023
This commit reverts the revert in
bb52656. It also includes the
fix for the issue that required the revert
(nodejs#49059 (comment))
and an additional common.mustCall() in the added test.

Refs: nodejs#49059
Refs: nodejs#49110
PR-URL: nodejs#49116
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
@aduh95 aduh95 added dont-land-on-v16.x dont-land-on-v18.x PRs that should not land on the v18.x-staging branch and should not be released in v18.x. dont-land-on-v20.x PRs that should not land on the v20.x-staging branch and should not be released in v20.x. labels Aug 16, 2023
RafaelGSS pushed a commit that referenced this pull request Aug 16, 2023
This commit reverts the revert in
bb52656. It also includes the
fix for the issue that required the revert
(#49059 (comment))
and an additional common.mustCall() in the added test.

Refs: #49059
Refs: #49110
PR-URL: #49116
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
rluvaton pushed a commit to rluvaton/node that referenced this pull request Aug 18, 2023
This commit reverts the revert in
bb52656. It also includes the
fix for the issue that required the revert
(nodejs#49059 (comment))
and an additional common.mustCall() in the added test.

Refs: nodejs#49059
Refs: nodejs#49110
PR-URL: nodejs#49116
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
rluvaton pushed a commit to rluvaton/node that referenced this pull request Sep 4, 2023
This commit reverts the revert in
bb52656. It also includes the
fix for the issue that required the revert
(nodejs#49059 (comment))
and an additional common.mustCall() in the added test.

Refs: nodejs#49059
Refs: nodejs#49110
PR-URL: nodejs#49116
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
UlisesGascon pushed a commit that referenced this pull request Sep 10, 2023
This commit reverts the revert in
bb52656. It also includes the
fix for the issue that required the revert
(#49059 (comment))
and an additional common.mustCall() in the added test.

Refs: #49059
Refs: #49110
PR-URL: #49116
Backport-PR-URL: #49225
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
targos pushed a commit that referenced this pull request Nov 27, 2023
This commit reverts the revert in
bb52656. It also includes the
fix for the issue that required the revert
(#49059 (comment))
and an additional common.mustCall() in the added test.

Refs: #49059
Refs: #49110
PR-URL: #49116
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
sercher added a commit to sercher/graaljs that referenced this pull request Apr 25, 2024
This commit reverts the revert in
bb52656fc627e4f48a0f706756873b593d81372a. It also includes the
fix for the issue that required the revert
(nodejs/node#49059 (comment))
and an additional common.mustCall() in the added test.

Refs: nodejs/node#49059
Refs: nodejs/node#49110
PR-URL: nodejs/node#49116
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
sercher added a commit to sercher/graaljs that referenced this pull request Apr 25, 2024
This commit reverts the revert in
bb52656fc627e4f48a0f706756873b593d81372a. It also includes the
fix for the issue that required the revert
(nodejs/node#49059 (comment))
and an additional common.mustCall() in the added test.

Refs: nodejs/node#49059
Refs: nodejs/node#49110
PR-URL: nodejs/node#49116
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
commit-queue-failed An error occurred while landing this pull request using GitHub Actions. commit-queue-squash Add this label to instruct the Commit Queue to squash all the PR commits into the first one. dont-land-on-v18.x PRs that should not land on the v18.x-staging branch and should not be released in v18.x. dont-land-on-v20.x PRs that should not land on the v20.x-staging branch and should not be released in v20.x. test_runner Issues and PRs related to the test runner subsystem.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

test_runner: global after not run if handles are open
8 participants