Skip to content

Instantly share code, notes, and snippets.

View ifeora-emeka's full-sized avatar
🏠
Working from home

Emeka Ifeora ifeora-emeka

🏠
Working from home
View GitHub Profile
@ifeora-emeka
ifeora-emeka / jest.config.js
Created September 15, 2021 22:35 — forked from thebuilder/jest.config.js
Use Jest Projects to run both JSDom and Node tests in the same project
module.exports = {
projects: [
{
displayName: 'dom',
testEnvironment: 'jsdom',
snapshotSerializers: ['enzyme-to-json/serializer'],
testMatch: ['**/__tests__/**/*.test.js?(x)']
},
{
displayName: 'node',