|
f7eb47b…
|
lmata
|
1 |
"use strict"; |
|
f7eb47b…
|
lmata
|
2 |
var __create = Object.create; |
|
f7eb47b…
|
lmata
|
3 |
var __defProp = Object.defineProperty; |
|
f7eb47b…
|
lmata
|
4 |
var __getOwnPropDesc = Object.getOwnPropertyDescriptor; |
|
f7eb47b…
|
lmata
|
5 |
var __getOwnPropNames = Object.getOwnPropertyNames; |
|
f7eb47b…
|
lmata
|
6 |
var __getProtoOf = Object.getPrototypeOf; |
|
f7eb47b…
|
lmata
|
7 |
var __hasOwnProp = Object.prototype.hasOwnProperty; |
|
f7eb47b…
|
lmata
|
8 |
var __export = (target, all) => { |
|
f7eb47b…
|
lmata
|
9 |
for (var name in all) |
|
f7eb47b…
|
lmata
|
10 |
__defProp(target, name, { get: all[name], enumerable: true }); |
|
f7eb47b…
|
lmata
|
11 |
}; |
|
f7eb47b…
|
lmata
|
12 |
var __copyProps = (to, from, except, desc) => { |
|
f7eb47b…
|
lmata
|
13 |
if (from && typeof from === "object" || typeof from === "function") { |
|
f7eb47b…
|
lmata
|
14 |
for (let key of __getOwnPropNames(from)) |
|
f7eb47b…
|
lmata
|
15 |
if (!__hasOwnProp.call(to, key) && key !== except) |
|
f7eb47b…
|
lmata
|
16 |
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable }); |
|
f7eb47b…
|
lmata
|
17 |
} |
|
f7eb47b…
|
lmata
|
18 |
return to; |
|
f7eb47b…
|
lmata
|
19 |
}; |
|
f7eb47b…
|
lmata
|
20 |
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps( |
|
f7eb47b…
|
lmata
|
21 |
// If the importer is in node compatibility mode or this is not an ESM |
|
f7eb47b…
|
lmata
|
22 |
// file that has been converted to a CommonJS file using a Babel- |
|
f7eb47b…
|
lmata
|
23 |
// compatible transform (i.e. "__esModule" has not been set), then set |
|
f7eb47b…
|
lmata
|
24 |
// "default" to the CommonJS "module.exports" for node compatibility. |
|
f7eb47b…
|
lmata
|
25 |
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target, |
|
f7eb47b…
|
lmata
|
26 |
mod |
|
f7eb47b…
|
lmata
|
27 |
)); |
|
f7eb47b…
|
lmata
|
28 |
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod); |
|
f7eb47b…
|
lmata
|
29 |
var lastRun_exports = {}; |
|
f7eb47b…
|
lmata
|
30 |
__export(lastRun_exports, { |
|
f7eb47b…
|
lmata
|
31 |
LastRunReporter: () => LastRunReporter |
|
f7eb47b…
|
lmata
|
32 |
}); |
|
f7eb47b…
|
lmata
|
33 |
module.exports = __toCommonJS(lastRun_exports); |
|
f7eb47b…
|
lmata
|
34 |
var import_fs = __toESM(require("fs")); |
|
f7eb47b…
|
lmata
|
35 |
var import_path = __toESM(require("path")); |
|
f7eb47b…
|
lmata
|
36 |
var import_projectUtils = require("./projectUtils"); |
|
f7eb47b…
|
lmata
|
37 |
class LastRunReporter { |
|
f7eb47b…
|
lmata
|
38 |
constructor(config) { |
|
f7eb47b…
|
lmata
|
39 |
this._config = config; |
|
f7eb47b…
|
lmata
|
40 |
const [project] = (0, import_projectUtils.filterProjects)(config.projects, config.cliProjectFilter); |
|
f7eb47b…
|
lmata
|
41 |
if (project) |
|
f7eb47b…
|
lmata
|
42 |
this._lastRunFile = import_path.default.join(project.project.outputDir, ".last-run.json"); |
|
f7eb47b…
|
lmata
|
43 |
} |
|
f7eb47b…
|
lmata
|
44 |
async filterLastFailed() { |
|
f7eb47b…
|
lmata
|
45 |
if (!this._lastRunFile) |
|
f7eb47b…
|
lmata
|
46 |
return; |
|
f7eb47b…
|
lmata
|
47 |
try { |
|
f7eb47b…
|
lmata
|
48 |
const lastRunInfo = JSON.parse(await import_fs.default.promises.readFile(this._lastRunFile, "utf8")); |
|
f7eb47b…
|
lmata
|
49 |
const failedTestIds = new Set(lastRunInfo.failedTests); |
|
f7eb47b…
|
lmata
|
50 |
this._config.postShardTestFilters.push((test) => failedTestIds.has(test.id)); |
|
f7eb47b…
|
lmata
|
51 |
} catch { |
|
f7eb47b…
|
lmata
|
52 |
} |
|
f7eb47b…
|
lmata
|
53 |
} |
|
f7eb47b…
|
lmata
|
54 |
version() { |
|
f7eb47b…
|
lmata
|
55 |
return "v2"; |
|
f7eb47b…
|
lmata
|
56 |
} |
|
f7eb47b…
|
lmata
|
57 |
printsToStdio() { |
|
f7eb47b…
|
lmata
|
58 |
return false; |
|
f7eb47b…
|
lmata
|
59 |
} |
|
f7eb47b…
|
lmata
|
60 |
onBegin(suite) { |
|
f7eb47b…
|
lmata
|
61 |
this._suite = suite; |
|
f7eb47b…
|
lmata
|
62 |
} |
|
f7eb47b…
|
lmata
|
63 |
async onEnd(result) { |
|
f7eb47b…
|
lmata
|
64 |
if (!this._lastRunFile || this._config.cliListOnly) |
|
f7eb47b…
|
lmata
|
65 |
return; |
|
f7eb47b…
|
lmata
|
66 |
const lastRunInfo = { |
|
f7eb47b…
|
lmata
|
67 |
status: result.status, |
|
f7eb47b…
|
lmata
|
68 |
failedTests: this._suite?.allTests().filter((t) => !t.ok()).map((t) => t.id) || [] |
|
f7eb47b…
|
lmata
|
69 |
}; |
|
f7eb47b…
|
lmata
|
70 |
await import_fs.default.promises.mkdir(import_path.default.dirname(this._lastRunFile), { recursive: true }); |
|
f7eb47b…
|
lmata
|
71 |
await import_fs.default.promises.writeFile(this._lastRunFile, JSON.stringify(lastRunInfo, void 0, 2)); |
|
f7eb47b…
|
lmata
|
72 |
} |
|
f7eb47b…
|
lmata
|
73 |
} |
|
f7eb47b…
|
lmata
|
74 |
// Annotate the CommonJS export names for ESM import in node: |
|
f7eb47b…
|
lmata
|
75 |
0 && (module.exports = { |
|
f7eb47b…
|
lmata
|
76 |
LastRunReporter |
|
f7eb47b…
|
lmata
|
77 |
}); |