(spec, test, reportResult)
| 963 | } |
| 964 | |
| 965 | skipTest(spec, test, reportResult) { |
| 966 | console.log(`[SKIP] ${test.name}`); |
| 967 | reportResult?.addSubtest(test.name, 'NOTRUN'); |
| 968 | this.subtestCounts.skipped++; |
| 969 | this.addTestResult(spec, { |
| 970 | name: test.name, |
| 971 | status: kSkip, |
| 972 | }); |
| 973 | } |
| 974 | |
| 975 | fail(spec, test, status, reportResult) { |
| 976 | const expected = spec.failedTests.includes(test.name); |