MCPcopy Index your code
hub / github.com/nodejs/node / constructor

Method constructor

lib/internal/test_runner/test.js:1760–1775  ·  view source on GitHub ↗
(options)

Source from the content-addressed store, hash-verified

1758class Suite extends Test {
1759 reportedType = 'suite';
1760 constructor(options) {
1761 super(options);
1762 if (options.timeout == null) {
1763 this.timeout = null;
1764 }
1765
1766 if (this.config.testNamePatterns !== null &&
1767 this.config.testSkipPatterns !== null &&
1768 !options.skip) {
1769 this.fn = options.fn || this.fn;
1770 this.skipped = false;
1771 }
1772
1773 this.buildSuite = this.createBuild();
1774 this.fn = noop;
1775 }
1776
1777 async createBuild() {
1778 const channelContext = {

Callers

nothing calls this directly

Calls 1

createBuildMethod · 0.95

Tested by

no test coverage detected