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 " , },