Our build environment currently uses node 12.19.0 and npm 6.14.8. When I saw that the new LTS version of node 14.15.1 (still npm 6.14.8) was available I downloaded it and ran our webpack build script and received this error. Is the new version of node plaining about an error that was always there, but ignored by 12.19.0?
internal/fs/utils.js:781
throw new ERR_INVALID_ARG_TYPE(
^
TypeError [ERR_INVALID_ARG_TYPE]: The "data" argument must be of type string or an instance of Buffer, TypedArray, or DataView. Received an instance of XMLElement
at writeFile (fs.js:1436:5)
at go$writeFile (/Components/node_modules/graceful-fs/graceful-fs.js:131:14)
at Object.writeFile (/Components/node_modules/graceful-fs/graceful-fs.js:128:12)
at /Components/node_modules/jest-html-reporter/dist/main.js:47:13
at /Components/node_modules/mkdirp/index.js:48:26
at callback (/Components/node_modules/graceful-fs/polyfills.js:295:20)
at FSReqCallback.onplete (fs.js:184:5) {
code: 'ERR_INVALID_ARG_TYPE'
}
Our build environment currently uses node 12.19.0 and npm 6.14.8. When I saw that the new LTS version of node 14.15.1 (still npm 6.14.8) was available I downloaded it and ran our webpack build script and received this error. Is the new version of node plaining about an error that was always there, but ignored by 12.19.0?
internal/fs/utils.js:781
throw new ERR_INVALID_ARG_TYPE(
^
TypeError [ERR_INVALID_ARG_TYPE]: The "data" argument must be of type string or an instance of Buffer, TypedArray, or DataView. Received an instance of XMLElement
at writeFile (fs.js:1436:5)
at go$writeFile (/Components/node_modules/graceful-fs/graceful-fs.js:131:14)
at Object.writeFile (/Components/node_modules/graceful-fs/graceful-fs.js:128:12)
at /Components/node_modules/jest-html-reporter/dist/main.js:47:13
at /Components/node_modules/mkdirp/index.js:48:26
at callback (/Components/node_modules/graceful-fs/polyfills.js:295:20)
at FSReqCallback.onplete (fs.js:184:5) {
code: 'ERR_INVALID_ARG_TYPE'
}
Share
Improve this question
edited Dec 4, 2020 at 8:58
skyboyer
23.8k7 gold badges62 silver badges71 bronze badges
asked Dec 4, 2020 at 4:27
cmulzercmulzer
1131 gold badge1 silver badge7 bronze badges
3
- We're seeing the same error, except in our case it's objecting to an Array rather than an XMLElement. And we're calling writeFileSync() rather than writeFile(). – Michael Kay Commented Jan 14, 2021 at 19:25
- any update on this issue, i am using latest node 15 – U rock Commented Feb 26, 2021 at 14:44
- any new update on this? – Ashwin Commented Apr 29, 2021 at 9:23
2 Answers
Reset to default 2Uplift jest-html-reporter version to at least 3.1.3
Add a second argument to writeFileSync
Instead of:
fs.writeFileSync(`${folderName}/styles.css`);
Do this:-
fs.writeFileSync(`${folderName}/styles.css`, '');
It tells wfs what to write to the file. It can be left empty