@alwaysmeticulous/cli 2.16.0 → 2.17.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/dist/api/test-run.api.d.ts +2 -1
- package/dist/commands/bootstrap/bootstrap.command.d.ts +1 -1
- package/dist/commands/bootstrap/bootstrap.command.js +2 -2
- package/dist/commands/create-test/create-test.command.d.ts +1 -1
- package/dist/commands/create-test/create-test.command.js +2 -2
- package/dist/commands/debug-replay/debug-replay.command.d.ts +1 -1
- package/dist/commands/debug-replay/debug-replay.command.js +2 -2
- package/dist/commands/download-replay/download-replay.command.d.ts +1 -1
- package/dist/commands/download-replay/download-replay.command.js +2 -2
- package/dist/commands/download-session/download-session.command.d.ts +1 -1
- package/dist/commands/download-session/download-session.command.js +2 -2
- package/dist/commands/record/record.command.d.ts +1 -1
- package/dist/commands/record/record.command.js +2 -2
- package/dist/commands/replay/replay.command.d.ts +1 -1
- package/dist/commands/replay/replay.command.js +2 -2
- package/dist/commands/run-all-tests/run-all-tests.command.d.ts +4 -2
- package/dist/commands/run-all-tests/run-all-tests.command.js +22 -120
- package/dist/commands/screenshot-diff/screenshot-diff.command.d.ts +1 -1
- package/dist/commands/screenshot-diff/screenshot-diff.command.js +3 -3
- package/dist/commands/serve/serve.command.d.ts +1 -1
- package/dist/commands/serve/serve.command.js +2 -2
- package/dist/commands/show-project/show-project.command.d.ts +1 -1
- package/dist/commands/show-project/show-project.command.js +2 -2
- package/dist/commands/update-tests/update-tests.command.d.ts +1 -1
- package/dist/commands/update-tests/update-tests.command.js +2 -2
- package/dist/index.d.ts +12 -11
- package/dist/index.js +14 -12
- package/dist/main.js +12 -12
- package/dist/parallel-tests/parallel-tests.handler.d.ts +2 -0
- package/dist/parallel-tests/parallel-tests.handler.js +10 -1
- package/dist/parallel-tests/run-all-tests.d.ts +46 -0
- package/dist/parallel-tests/run-all-tests.js +169 -0
- package/dist/parallel-tests/run-all-tests.types.d.ts +5 -0
- package/dist/parallel-tests/run-all-tests.types.js +2 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/utils/github-summary.utils.d.ts +1 -2
- package/dist/utils/github-summary.utils.js +1 -3
- package/package.json +2 -2
|
@@ -7,15 +7,13 @@ exports.writeGitHubSummary = void 0;
|
|
|
7
7
|
const promises_1 = require("fs/promises");
|
|
8
8
|
const common_1 = require("@alwaysmeticulous/common");
|
|
9
9
|
const loglevel_1 = __importDefault(require("loglevel"));
|
|
10
|
-
const
|
|
11
|
-
const writeGitHubSummary = async ({ testRun, results }) => {
|
|
10
|
+
const writeGitHubSummary = async ({ testRunUrl, results }) => {
|
|
12
11
|
const logger = loglevel_1.default.getLogger(common_1.METICULOUS_LOGGER_NAME);
|
|
13
12
|
const summaryFile = process.env["GITHUB_STEP_SUMMARY"] || "";
|
|
14
13
|
if (!summaryFile) {
|
|
15
14
|
logger.warn("Warning: $GITHUB_STEP_SUMMARY is not defined, skipping writing GitHub action summary");
|
|
16
15
|
return;
|
|
17
16
|
}
|
|
18
|
-
const testRunUrl = (0, test_run_api_1.getTestRunUrl)(testRun);
|
|
19
17
|
const summary = `# Test Results
|
|
20
18
|
|
|
21
19
|
[View on Meticulous](${testRunUrl})
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alwaysmeticulous/cli",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.17.0",
|
|
4
4
|
"description": "The Meticulous CLI",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -76,5 +76,5 @@
|
|
|
76
76
|
"bugs": {
|
|
77
77
|
"url": "https://github.com/alwaysmeticulous/meticulous-sdk/issues"
|
|
78
78
|
},
|
|
79
|
-
"gitHead": "
|
|
79
|
+
"gitHead": "bdb9bbca2ccca357bbe12f579403d8cc0857562e"
|
|
80
80
|
}
|