@flakiness/sdk 0.121.11 → 0.122.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/cli/cli.js
CHANGED
|
@@ -1158,8 +1158,7 @@ import fs5 from "fs/promises";
|
|
|
1158
1158
|
import path5 from "path";
|
|
1159
1159
|
|
|
1160
1160
|
// src/junit.ts
|
|
1161
|
-
import { FlakinessReport as FK } from "@flakiness/
|
|
1162
|
-
import { ReportUtils as ReportUtils2 } from "@flakiness/report";
|
|
1161
|
+
import { ReportUtils as ReportUtils2, FlakinessReport as FK } from "@flakiness/report";
|
|
1163
1162
|
import { parseXml, XmlElement, XmlText } from "@rgrove/parse-xml";
|
|
1164
1163
|
import assert2 from "assert";
|
|
1165
1164
|
import fs4 from "fs";
|
|
@@ -1773,7 +1772,7 @@ import fs10 from "fs/promises";
|
|
|
1773
1772
|
import path8 from "path";
|
|
1774
1773
|
|
|
1775
1774
|
// src/playwrightJSONReport.ts
|
|
1776
|
-
import { FlakinessReport } from "@flakiness/
|
|
1775
|
+
import { FlakinessReport as FK2 } from "@flakiness/report";
|
|
1777
1776
|
import { ReportUtils as ReportUtils3 } from "@flakiness/report";
|
|
1778
1777
|
import debug2 from "debug";
|
|
1779
1778
|
import { posix as posixPath2 } from "path";
|
|
@@ -1809,7 +1808,7 @@ var PlaywrightJSONReport;
|
|
|
1809
1808
|
};
|
|
1810
1809
|
const configPath = jsonReport.config.configFile ? gitFilePath(context.gitRoot, normalizePath(jsonReport.config.configFile)) : void 0;
|
|
1811
1810
|
const report = {
|
|
1812
|
-
category:
|
|
1811
|
+
category: FK2.CATEGORY_PLAYWRIGHT,
|
|
1813
1812
|
commitId: metadata.commitId,
|
|
1814
1813
|
configPath,
|
|
1815
1814
|
url: metadata.runURL,
|
package/lib/cli/cmd-convert.js
CHANGED
|
@@ -5,8 +5,7 @@ import fs3 from "fs/promises";
|
|
|
5
5
|
import path2 from "path";
|
|
6
6
|
|
|
7
7
|
// src/junit.ts
|
|
8
|
-
import { FlakinessReport as FK } from "@flakiness/
|
|
9
|
-
import { ReportUtils as ReportUtils2 } from "@flakiness/report";
|
|
8
|
+
import { ReportUtils as ReportUtils2, FlakinessReport as FK } from "@flakiness/report";
|
|
10
9
|
import { parseXml, XmlElement, XmlText } from "@rgrove/parse-xml";
|
|
11
10
|
import assert2 from "assert";
|
|
12
11
|
import fs2 from "fs";
|
|
@@ -5,7 +5,7 @@ import fs3 from "fs/promises";
|
|
|
5
5
|
import path2 from "path";
|
|
6
6
|
|
|
7
7
|
// src/playwrightJSONReport.ts
|
|
8
|
-
import { FlakinessReport } from "@flakiness/
|
|
8
|
+
import { FlakinessReport as FK } from "@flakiness/report";
|
|
9
9
|
import { ReportUtils as ReportUtils2 } from "@flakiness/report";
|
|
10
10
|
import debug from "debug";
|
|
11
11
|
import { posix as posixPath2 } from "path";
|
|
@@ -292,7 +292,7 @@ var PlaywrightJSONReport;
|
|
|
292
292
|
};
|
|
293
293
|
const configPath = jsonReport.config.configFile ? gitFilePath(context.gitRoot, normalizePath(jsonReport.config.configFile)) : void 0;
|
|
294
294
|
const report = {
|
|
295
|
-
category:
|
|
295
|
+
category: FK.CATEGORY_PLAYWRIGHT,
|
|
296
296
|
commitId: metadata.commitId,
|
|
297
297
|
configPath,
|
|
298
298
|
url: metadata.runURL,
|
package/lib/junit.js
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
// src/junit.ts
|
|
2
|
-
import { FlakinessReport as FK } from "@flakiness/
|
|
3
|
-
import { ReportUtils as ReportUtils2 } from "@flakiness/report";
|
|
2
|
+
import { ReportUtils as ReportUtils2, FlakinessReport as FK } from "@flakiness/report";
|
|
4
3
|
import { parseXml, XmlElement, XmlText } from "@rgrove/parse-xml";
|
|
5
4
|
import assert from "assert";
|
|
6
5
|
import fs2 from "fs";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// src/playwrightJSONReport.ts
|
|
2
|
-
import { FlakinessReport } from "@flakiness/
|
|
2
|
+
import { FlakinessReport as FK } from "@flakiness/report";
|
|
3
3
|
import { ReportUtils as ReportUtils2 } from "@flakiness/report";
|
|
4
4
|
import debug from "debug";
|
|
5
5
|
import { posix as posixPath2 } from "path";
|
|
@@ -286,7 +286,7 @@ var PlaywrightJSONReport;
|
|
|
286
286
|
};
|
|
287
287
|
const configPath = jsonReport.config.configFile ? gitFilePath(context.gitRoot, normalizePath(jsonReport.config.configFile)) : void 0;
|
|
288
288
|
const report = {
|
|
289
|
-
category:
|
|
289
|
+
category: FK.CATEGORY_PLAYWRIGHT,
|
|
290
290
|
commitId: metadata.commitId,
|
|
291
291
|
configPath,
|
|
292
292
|
url: metadata.runURL,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flakiness/sdk",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.122.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"bin": {
|
|
6
6
|
"flakiness": "./lib/cli/cli.js"
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"author": "Degu Labs, Inc",
|
|
46
46
|
"license": "Fair Source 100",
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@flakiness/server": "0.
|
|
48
|
+
"@flakiness/server": "0.122.0",
|
|
49
49
|
"@playwright/test": "^1.54.0",
|
|
50
50
|
"@types/babel__code-frame": "^7.0.6",
|
|
51
51
|
"@types/compression": "^1.8.1",
|
|
@@ -53,9 +53,8 @@
|
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
55
|
"@babel/code-frame": "^7.26.2",
|
|
56
|
-
"@flakiness/
|
|
57
|
-
"@flakiness/
|
|
58
|
-
"@flakiness/shared": "0.121.11",
|
|
56
|
+
"@flakiness/report": "0.122.0",
|
|
57
|
+
"@flakiness/shared": "0.122.0",
|
|
59
58
|
"@rgrove/parse-xml": "^4.2.0",
|
|
60
59
|
"body-parser": "^1.20.3",
|
|
61
60
|
"chalk": "^5.6.2",
|