module.exports = { 'projects': [ '/app/gabsocial', ], 'testPathIgnorePatterns': [ '/node_modules/', '/vendor/', '/config/', '/log/', '/public/', '/tmp/', '/webpack/', // Temporarily disable these tests // https://gitlab.com/soapbox-pub/soapbox-fe/-/issues/34 '/app/gabsocial/components/__tests__/avatar-test.js', '/app/gabsocial/components/__tests__/avatar_overlay-test.js', ], 'setupFiles': [ 'raf/polyfill', ], 'setupFilesAfterEnv': [ '/app/gabsocial/test_setup.js', ], 'collectCoverageFrom': [ 'app/gabsocial/**/*.js', '!app/gabsocial/features/emoji/emoji_compressed.js', '!app/gabsocial/locales/locale-data/*.js', '!app/gabsocial/service_worker/entry.js', '!app/gabsocial/test_setup.js', ], 'coverageDirectory': '/coverage', 'moduleDirectories': [ '/node_modules', '/app', ], };