
Thanks, this was very helpful! The only additional thing I had to do was to add a fileMock.js to stub static assets, containing the following line:
module.exports = "/test-file-stub";
And updating the jest config:
moduleNameMapper: {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$":
"<rootDir>/__mocks__/fileMock.js",
"\\.(css|less|scss|sass)$": "<rootDir>/__mocks__/styleMock.js",
"^pages/(.*)$": "<rootDir>/pages/$1",
"^components/(.*)$": "<rootDir>/components/$1",
"^modules/(.*)$": "<rootDir>/modules/$1",
},
Very interesting article. Next.js is awesome. :)
Btw, use ```js in your code blocks for the syntax highlighting to work.
Hans
free software developer
Thank you Antonio, a very good document, i've been using antd but you motivated me to take a look to tailwind.