-
Notifications
You must be signed in to change notification settings - Fork 555
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ test('FormData class custom inspection', () => { | |
formData.append('username', 'john_doe') | ||
formData.append('email', '[email protected]') | ||
|
||
const expectedOutput = 'FormData:\nusername: john_doe\nemail: [email protected]\n' | ||
const expectedOutput = "FormData { username: 'john_doe', email: '[email protected]' }" | ||
|
||
assert.deepStrictEqual(inspect(formData), expectedOutput) | ||
Check failure on line 15 in test/fetch/formdata-inspect-custom.js GitHub Actions / Test with Node.js 18 on ubuntu-latestFormData class custom inspection
Check failure on line 15 in test/fetch/formdata-inspect-custom.js GitHub Actions / Test with Node.js 18 on macos-latestFormData class custom inspection
Check failure on line 15 in test/fetch/formdata-inspect-custom.js GitHub Actions / Test with Node.js 20 on ubuntu-latestFormData class custom inspection
Check failure on line 15 in test/fetch/formdata-inspect-custom.js GitHub Actions / Test with Node.js 20 on macos-latestFormData class custom inspection
Check failure on line 15 in test/fetch/formdata-inspect-custom.js GitHub Actions / Test with Node.js 21 on ubuntu-latestFormData class custom inspection
Check failure on line 15 in test/fetch/formdata-inspect-custom.js GitHub Actions / Test with Node.js 21 on macos-latestFormData class custom inspection
|
||
}) |