@jsenv/core 30.4.2 → 31.0.1
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/js/supervisor.js +1 -1
- package/dist/js/v8_coverage.js +29 -22
- package/dist/main.js +582 -832
- package/package.json +5 -5
- package/src/build/build.js +26 -3
- package/src/build/start_build_server.js +43 -24
- package/src/dev/file_service.js +2 -1
- package/src/dev/start_dev_server.js +31 -15
- package/src/execute/execute.js +1 -1
- package/src/execute/run.js +2 -2
- package/src/execute/runtimes/browsers/from_playwright.js +5 -5
- package/src/execute/runtimes/node/node_child_process.js +6 -6
- package/src/execute/runtimes/node/node_worker_thread.js +6 -6
- package/src/kitchen/kitchen.js +11 -1
- package/src/plugins/supervisor/client/supervisor.js +1 -1
- package/src/plugins/transpilation/as_js_classic/jsenv_plugin_as_js_classic_library.js +1 -4
- package/src/test/execute_plan.js +4 -4
- package/src/test/execute_test_plan.js +57 -39
- package/src/test/execution_colors.js +1 -1
- package/src/test/logs_file_execution.js +7 -7
|
@@ -147,8 +147,8 @@ const createStatusSummary = ({ counters }) => {
|
|
|
147
147
|
if (counters.timedout === counters.total) {
|
|
148
148
|
return `all ${ANSI.color(`timed out`, EXECUTION_COLORS.timedout)}`
|
|
149
149
|
}
|
|
150
|
-
if (counters.
|
|
151
|
-
return `all ${ANSI.color(`
|
|
150
|
+
if (counters.failed === counters.total) {
|
|
151
|
+
return `all ${ANSI.color(`failed`, EXECUTION_COLORS.failed)}`
|
|
152
152
|
}
|
|
153
153
|
if (counters.completed === counters.total) {
|
|
154
154
|
return `all ${ANSI.color(`completed`, EXECUTION_COLORS.completed)}`
|
|
@@ -171,9 +171,9 @@ const createMixedDetails = ({ counters }) => {
|
|
|
171
171
|
)}`,
|
|
172
172
|
)
|
|
173
173
|
}
|
|
174
|
-
if (counters.
|
|
174
|
+
if (counters.failed) {
|
|
175
175
|
parts.push(
|
|
176
|
-
`${counters.
|
|
176
|
+
`${counters.failed} ${ANSI.color(`failed`, EXECUTION_COLORS.failed)}`,
|
|
177
177
|
)
|
|
178
178
|
}
|
|
179
179
|
if (counters.completed) {
|
|
@@ -221,10 +221,10 @@ const descriptionFormatters = {
|
|
|
221
221
|
EXECUTION_COLORS.timedout,
|
|
222
222
|
)
|
|
223
223
|
},
|
|
224
|
-
|
|
224
|
+
efailedrrored: ({ index, total }) => {
|
|
225
225
|
return ANSI.color(
|
|
226
|
-
`${UNICODE.FAILURE_RAW} execution ${index + 1} of ${total}
|
|
227
|
-
EXECUTION_COLORS.
|
|
226
|
+
`${UNICODE.FAILURE_RAW} execution ${index + 1} of ${total} failed`,
|
|
227
|
+
EXECUTION_COLORS.failed,
|
|
228
228
|
)
|
|
229
229
|
},
|
|
230
230
|
completed: ({ index, total }) => {
|