Lines Matching refs:spec
547 this.inProgress = new Set(queue.map((spec) => spec.filename));
549 for (const spec of queue) {
550 const testFileName = spec.filename;
551 const content = spec.getContent();
552 const meta = spec.meta = this.getMeta(content);
554 const absolutePath = spec.getAbsolutePath();
555 const relativePath = spec.getRelativePath();
644 for (const spec of this.inProgress) {
645 this.fail(spec, { name: 'Incomplete' }, kIncomplete);
723 const spec = this.specMap.get(filename);
724 return spec.meta?.title || filename.split('.')[0];
812 const spec = this.specMap.get(filename);
813 const expected = spec.failedTests.includes(test.name);
874 for (const spec of this.specMap.values()) {
875 const filename = spec.filename;
876 if (spec.skipReasons.length > 0) {
877 this.skip(filename, spec.skipReasons);
881 const lackingIntl = intlRequirements.isLacking(spec.requires);
887 queue.push(spec);