We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9a9d9e commit 7eef4a5Copy full SHA for 7eef4a5
packages/nextjs/test/integration/test/utils/client.js
@@ -101,7 +101,7 @@ const assertObjectMatches = (actual, expected) => {
101
if (Object.prototype.toString.call(actual) !== Object.prototype.toString.call(expected)) {
102
throw new TypeError(
103
`Types mismatch: ${actual} !== ${expected}. Actual (full): ${JSON.stringify(
104
- actual ?? '',
+ actual || '',
105
)} Expected (full): ${JSON.stringify(expected)}`,
106
);
107
}
0 commit comments