mirror of
https://github.com/strapi/strapi.git
synced 2025-07-07 09:02:42 +00:00

* test(content-manager): fix wysiwyg by silencing the warnings * test(admin): add a harness – finally * chore: remove prop-types as dep of helper-plugin * test(content-manager): fix console errors in EditSettingsView * test(content-manager): fix ListViewSettings * test: fix useAdminRolePermissions * chore: convert more tests * test: more fe tests * test: more fe tests * test(ctb): fix tests * chore: throw error in env * chore: fix act finals * chore: remove resetHandlers and use once * chore: throw all the time for warnings and errors
12 lines
307 B
JavaScript
12 lines
307 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
preset: '../../../jest-preset.front.js',
|
|
collectCoverageFrom: ['<rootDir>/packages/core/admin/admin/**/*.js'],
|
|
displayName: 'Core admin',
|
|
moduleNameMapper: {
|
|
'^@tests/(.*)$': '<rootDir>/admin/tests/$1',
|
|
},
|
|
setupFilesAfterEnv: ['./admin/tests/setup.ts'],
|
|
};
|