Skip to content

fix(deps): update all non-major dependencies #3

fix(deps): update all non-major dependencies

fix(deps): update all non-major dependencies #3

Triggered via pull request December 20, 2024 02:58
Status Failure
Total duration 37s
Artifacts

test-pr.yaml

on: pull_request
Fit to window
Zoom out
Zoom in

Annotations

10 errors and 1 warning
test/webpack.test.ts > webpack > should generate bundle: packages/icu-messages/test/webpack.test.ts#L113
Error: Snapshot `webpack > should generate bundle 1` mismatched - Expected + Received @@ -25,11 +25,11 @@ // EXPORTS __webpack_require__.d(__webpack_exports__, { "default": () => (/* binding */ example) }); - ;// CONCATENATED MODULE: ./test/fixtures/normal/en.messages.json + ;// ./test/fixtures/normal/en.messages.json const greeting = [ { type: 0, value: "Hello, " }, @@ -44,11 +44,11 @@ ]; /* harmony default export */ const en_messages = ({ greeting: greeting }); - ;// CONCATENATED MODULE: ./test/fixtures/normal/input.mjs + ;// ./test/fixtures/normal/input.mjs function example() { return en_messages } ❯ test/webpack.test.ts:113:19
test/webpack.test.ts > webpack > should be compatible with other json files: packages/icu-messages/test/webpack.test.ts#L144
Error: Snapshot `webpack > should be compatible with other json files 1` mismatched - Expected + Received @@ -25,13 +25,13 @@ // EXPORTS __webpack_require__.d(__webpack_exports__, { "default": () => (/* binding */ example) }); - ;// CONCATENATED MODULE: ./test/fixtures/with-json/options.json + ;// ./test/fixtures/with-json/options.json const options_namespaceObject = {"type":0}; - ;// CONCATENATED MODULE: ./test/fixtures/with-json/en.messages.json + ;// ./test/fixtures/with-json/en.messages.json const greeting = [ { type: 0, value: "Hello, " }, @@ -61,11 +61,11 @@ /* harmony default export */ const en_messages = ({ greeting: greeting, goodbye: goodbye }); - ;// CONCATENATED MODULE: ./test/fixtures/with-json/input.mjs + ;// ./test/fixtures/with-json/input.mjs const messageTypes = [ [0, 'greeting'], ❯ test/webpack.test.ts:144:19
Test
@vintl/unplugin#test: command (/home/runner/work/unplugins/unplugins/packages/icu-messages) /opt/hostedtoolcache/node/18.20.5/x64/bin/pnpm run test exited (1)
test/webpack.test.ts > webpack > should be able to parse using TOML files: packages/icu-messages/test/webpack.test.ts#L160
Error: Snapshot `webpack > should be able to parse using TOML files 1` mismatched - Expected + Received @@ -25,11 +25,11 @@ // EXPORTS __webpack_require__.d(__webpack_exports__, { "default": () => (/* binding */ example) }); - ;// CONCATENATED MODULE: ./test/fixtures/toml/en.messages.toml + ;// ./test/fixtures/toml/en.messages.toml const greeting = [ { type: 0, value: "Hello, " }, @@ -44,11 +44,11 @@ ]; /* harmony default export */ const en_messages = ({ greeting: greeting }); - ;// CONCATENATED MODULE: ./test/fixtures/toml/input.mjs + ;// ./test/fixtures/toml/input.mjs function example() { return en_messages.greeting } ❯ test/webpack.test.ts:160:19
test/webpack.test.ts > webpack > should transform to AST JSON: packages/icu-messages/test/webpack.test.ts#L176
Error: Snapshot `webpack > should transform to AST JSON 1` mismatched - Expected + Received @@ -25,13 +25,13 @@ // EXPORTS __webpack_require__.d(__webpack_exports__, { "default": () => (/* binding */ example) }); - ;// CONCATENATED MODULE: ./test/fixtures/normal/en.messages.json + ;// ./test/fixtures/normal/en.messages.json const en_messages_namespaceObject = /*#__PURE__*/JSON.parse('{"greeting":[{"type":0,"value":"Hello, "},{"type":1,"value":"name"},{"type":0,"value":"!"}]}'); - ;// CONCATENATED MODULE: ./test/fixtures/normal/input.mjs + ;// ./test/fixtures/normal/input.mjs function example() { return en_messages_namespaceObject } ❯ test/webpack.test.ts:176:19
test/webpack.test.ts > webpack > should transform to JSON of raw messages: packages/icu-messages/test/webpack.test.ts#L193
Error: Snapshot `webpack > should transform to JSON of raw messages 1` mismatched - Expected + Received @@ -25,13 +25,13 @@ // EXPORTS __webpack_require__.d(__webpack_exports__, { "default": () => (/* binding */ example) }); - ;// CONCATENATED MODULE: ./test/fixtures/normal/en.messages.json + ;// ./test/fixtures/normal/en.messages.json const en_messages_namespaceObject = /*#__PURE__*/JSON.parse('{"greeting":"Hello, {name}!"}'); - ;// CONCATENATED MODULE: ./test/fixtures/normal/input.mjs + ;// ./test/fixtures/normal/input.mjs function example() { return en_messages_namespaceObject } ❯ test/webpack.test.ts:193:19
test/webpack.test.ts > webpack > should transform using custom formatter: packages/icu-messages/test/webpack.test.ts#L211
Error: Snapshot `webpack > should transform using custom formatter 1` mismatched - Expected + Received @@ -51,22 +51,18 @@ /******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop)) /******/ })(); /******/ /************************************************************************/ var __webpack_exports__ = {}; - // This entry need to be wrapped in an IIFE because it need to be isolated against other modules in the chunk. - (() => { /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* binding */ example) /* harmony export */ }); /* harmony import */ var _en_messages_json__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("./test/fixtures/normal/en.messages.json"); function example() { return _en_messages_json__WEBPACK_IMPORTED_MODULE_0__ } - - })(); var __webpack_exports__default = __webpack_exports__["default"]; export { __webpack_exports__default as default }; " ❯ test/webpack.test.ts:211:19
test/webpack.test.ts > webpack > should handle errors as defined: packages/icu-messages/test/webpack.test.ts#L228
Error: Snapshot `webpack > should handle errors as defined 1` mismatched - Expected + Received @@ -25,22 +25,22 @@ // EXPORTS __webpack_require__.d(__webpack_exports__, { "default": () => (/* binding */ example) }); - ;// CONCATENATED MODULE: ./test/fixtures/errored/en.messages.json + ;// ./test/fixtures/errored/en.messages.json const greeting = [ { type: 0, value: "Hello, <bold>{name}</bold!" } ]; /* harmony default export */ const en_messages = ({ greeting: greeting }); - ;// CONCATENATED MODULE: ./test/fixtures/errored/input.mjs + ;// ./test/fixtures/errored/input.mjs function example() { return en_messages } ❯ test/webpack.test.ts:228:19
test/webpack.test.ts > webpack > should pass parsing fc to error handler: packages/icu-messages/test/webpack.test.ts#L290
Error: Snapshot `webpack > should pass parsing fc to error handler 1` mismatched - Expected + Received @@ -25,11 +25,11 @@ // EXPORTS __webpack_require__.d(__webpack_exports__, { "default": () => (/* binding */ example) }); - ;// CONCATENATED MODULE: ./test/fixtures/errored/en.messages.json + ;// ./test/fixtures/errored/en.messages.json const greeting = [ { type: 0, value: "Hello, <bold>" }, @@ -44,11 +44,11 @@ ]; /* harmony default export */ const en_messages = ({ greeting: greeting }); - ;// CONCATENATED MODULE: ./test/fixtures/errored/input.mjs + ;// ./test/fixtures/errored/input.mjs function example() { return en_messages } ❯ test/webpack.test.ts:290:19
Test
Process completed with exit code 1.
Test
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636