You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
/*
|
|
|
|
|
* ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️
|
|
|
|
|
*
|
|
|
|
|
* In order to extend the configuration follow the steps in .config/README.md
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
|
testEnvironment: 'jest-environment-jsdom',
|
|
|
|
|
testMatch: [
|
|
|
|
|
'<rootDir>/src/**/__tests__/**/*.{js,jsx,ts,tsx}',
|
|
|
|
|
'<rootDir>/src/**/*.{spec,test,jest}.{js,jsx,ts,tsx}',
|
|
|
|
|
'<rootDir>/src/**/*.{spec,test,jest}.{js,jsx,ts,tsx}',
|
|
|
|
|
],
|
|
|
|
|
transform: {
|
|
|
|
|
'^.+\\.(t|j)sx?$': [
|
|
|
|
|
'@swc/jest',
|
|
|
|
|
{
|
|
|
|
|
sourceMaps: true,
|
|
|
|
|
jsc: {
|
|
|
|
|
parser: {
|
|
|
|
|
syntax: 'typescript',
|
|
|
|
|
tsx: true,
|
|
|
|
|
decorators: false,
|
|
|
|
|
dynamicImport: true,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
setupFilesAfterEnv: ['<rootDir>/.config/jest-setup.js'],
|
|
|
|
|
};
|