๐Ÿ“ฆ payloadcms / plugin-template

๐Ÿ“„ jest.config.js ยท 13 lines
1
2
3
4
5
6
7
8
9
10
11
12
13module.exports = {
  verbose: true,
  testEnvironment: 'node',
  transform: {
    '^.+\\.(t|j)sx?$': '<rootDir>/node_modules/@swc/jest',
  },
  moduleNameMapper: {
    '\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$':
      '<rootDir>/src/mocks/fileStub.js',
    '\\.(css|scss)$': '<rootDir>/src/mocks/fileStub.js',
  },
}