Lines Matching defs:loc

159       loc: getCallerLocation(),
212 const { concurrency, loc, only, timeout, todo, signal } = options;
344 if (loc === undefined || kFilename === undefined) {
345 this.loc = undefined;
347 this.loc = {
349 line: loc[0],
350 column: loc[1],
351 file: loc[2],
373 this.reporter.dequeue(test.nesting, test.loc, test.name);
532 this.reporter.enqueue(this.nesting, this.loc, this.name);
541 this.reporter.dequeue(this.nesting, this.loc, this.name);
732 loc,
738 reporter.plan(nesting, loc, harness.counters.topLevel);
743 reporter.diagnostic(nesting, loc, diagnostics[i]);
746 reporter.diagnostic(nesting, loc, `tests ${harness.counters.all}`);
747 reporter.diagnostic(nesting, loc, `suites ${harness.counters.suites}`);
748 reporter.diagnostic(nesting, loc, `pass ${harness.counters.passed}`);
749 reporter.diagnostic(nesting, loc, `fail ${harness.counters.failed}`);
750 reporter.diagnostic(nesting, loc, `cancelled ${harness.counters.cancelled}`);
751 reporter.diagnostic(nesting, loc, `skipped ${harness.counters.skipped}`);
752 reporter.diagnostic(nesting, loc, `todo ${harness.counters.todo}`);
753 reporter.diagnostic(nesting, loc, `duration_ms ${this.duration()}`);
756 reporter.coverage(nesting, loc, coverage);
795 this.reporter.plan(this.subtests[0].nesting, this.loc, this.subtests.length);
813 this.reporter.ok(this.nesting, this.loc, this.testNumber, this.name, details, directive);
816 this.reporter.fail(this.nesting, this.loc, this.testNumber, this.name, details, directive);
820 this.reporter.diagnostic(this.nesting, this.loc, this.diagnostics[i]);
830 this.reporter.start(this.nesting, this.loc, this.name);
840 const { loc, timeout, signal } = options;
841 super({ __proto__: null, fn, loc, timeout, signal });
865 const { error, loc, parentTest: parent } = this;
875 parent.reporter.fail(0, loc, parent.subtests.length + 1, loc.file, {