mirror of
https://github.com/zebrajr/node.git
synced 2026-01-15 12:15:26 +00:00
There are some changes for function names in stack traces. PR-URL: https://github.com/nodejs/node/pull/42657 Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Michael Dawson <midawson@redhat.com>
25 lines
714 B
Plaintext
25 lines
714 B
Plaintext
Exiting with code=1
|
|
node:assert:*
|
|
throw new AssertionError(obj);
|
|
^
|
|
|
|
AssertionError [ERR_ASSERTION]: Expected values to be strictly equal:
|
|
|
|
1 !== 2
|
|
|
|
at Object.<anonymous> (*test*message*error_exit.js:*:*)
|
|
at Module._compile (node:internal/modules/cjs/loader:*:*)
|
|
at Module._extensions..js (node:internal/modules/cjs/loader:*:*)
|
|
at Module.load (node:internal/modules/cjs/loader:*:*)
|
|
at Module._load (node:internal/modules/cjs/loader:*:*)
|
|
at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:*:*)
|
|
at node:internal/main/run_main_module:*:* {
|
|
generatedMessage: true,
|
|
code: 'ERR_ASSERTION',
|
|
actual: 1,
|
|
expected: 2,
|
|
operator: 'strictEqual'
|
|
}
|
|
|
|
Node.js *
|