Lines Matching defs:root
32 return setup(new Test({ __proto__: null, ...options, name: '<root>' }));
116 function setup(root) {
117 if (root.startTime !== null) {
118 return root;
147 createProcessEventHandler('uncaughtException', root);
149 createProcessEventHandler('unhandledRejection', root);
150 const coverage = configureCoverage(root, globalOptions);
152 root.postRun(new ERR_TEST_FAILURE(
175 root.harness = {
178 coverage: FunctionPrototypeBind(collectCoverage, null, root, coverage),
192 root.startTime = hrtime();
193 return root;