Lines Matching refs:result

75     const result = spawnSync(process.execPath, args);
77 assert(!result.stdout.toString().includes('# start of coverage report'));
78 assert(result.stderr.toString().includes('coverage could not be collected'));
79 assert.strictEqual(result.status, 0);
80 assert(!findCoverageFileForPid(result.pid));
89 const result = spawnSync(process.execPath, args, options);
92 assert(result.stdout.toString().includes(report));
93 assert.strictEqual(result.stderr.toString(), '');
94 assert.strictEqual(result.status, 0);
95 assert(findCoverageFileForPid(result.pid));
101 const result = spawnSync(process.execPath, args);
104 assert(result.stdout.toString().includes(report));
105 assert.strictEqual(result.stderr.toString(), '');
106 assert.strictEqual(result.status, 0);
107 assert(!findCoverageFileForPid(result.pid));
116 const result = spawnSync(process.execPath, args, options);
119 assert(result.stdout.toString().includes(report));
120 assert.strictEqual(result.stderr.toString(), '');
121 assert.strictEqual(result.status, 0);
122 assert(findCoverageFileForPid(result.pid));
128 const result = spawnSync(process.execPath, args);
131 assert(result.stdout.toString().includes(report));
132 assert.strictEqual(result.stderr.toString(), '');
133 assert.strictEqual(result.status, 0);
134 assert(!findCoverageFileForPid(result.pid));
143 const result = spawnSync(process.execPath, args);
146 assert.strictEqual(result.stderr.toString(), '');
147 assert(result.stdout.toString().includes(report));
148 assert.strictEqual(result.status, 0);
149 assert(!findCoverageFileForPid(result.pid));
176 const result = spawnSync(process.execPath, args, {
180 assert.strictEqual(result.stderr.toString(), '');
181 assert(result.stdout.toString().includes(report));
182 assert.strictEqual(result.status, 0);