Skip to content

Commit fb98fa4

Browse files
cjihrigruyadorno
authored andcommitted
test_runner: refactor Promise chain in run()
This commit refactors the chain of functions in run() to use an async function instead of creating an awkward primordial-based Promise chain. PR-URL: #55958 Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Pietro Marchini <[email protected]> Reviewed-By: Jacob Smith <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Chemi Atlow <[email protected]>
1 parent 18c9496 commit fb98fa4

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

lib/internal/test_runner/runner.js

+10-3
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ const {
1717
ArrayPrototypeSort,
1818
ObjectAssign,
1919
PromisePrototypeThen,
20-
PromiseResolve,
2120
PromiseWithResolvers,
2221
SafeMap,
2322
SafePromiseAll,
@@ -798,9 +797,17 @@ function run(options = kEmptyObject) {
798797
}
799798
}
800799

801-
const setupPromise = PromiseResolve(setup?.(root.reporter));
802-
PromisePrototypeThen(PromisePrototypeThen(PromisePrototypeThen(setupPromise, runFiles), postRun), teardown);
800+
const runChain = async () => {
801+
if (typeof setup === 'function') {
802+
await setup(root.reporter);
803+
}
804+
805+
await runFiles();
806+
postRun?.();
807+
teardown?.();
808+
};
803809

810+
runChain();
804811
return root.reporter;
805812
}
806813

0 commit comments

Comments
 (0)