# What this PR does Migrate from grafana-toolkit to grafana plugin tools ## Which issue(s) this PR fixes https://github.com/grafana/oncall/issues/3651 ## Checklist - [x] Unit, integration, and e2e (if applicable) tests updated - [x] Documentation added (or `pr:no public docs` PR label added if not required) - [x] `CHANGELOG.md` updated (or `pr:no changelog` PR label added if not required) --------- Co-authored-by: Michael Derynck <michael.derynck@grafana.com> Co-authored-by: Dominik <dominik.broj@grafana.com>
43 lines
1.5 KiB
JavaScript
43 lines
1.5 KiB
JavaScript
/*
|
|
* ⚠️⚠️⚠️ THIS FILE WAS SCAFFOLDED BY `@grafana/create-plugin`. DO NOT EDIT THIS FILE DIRECTLY. ⚠️⚠️⚠️
|
|
*
|
|
* In order to extend the configuration follow the steps in
|
|
* https://grafana.com/developers/plugin-tools/create-a-plugin/extend-a-plugin/extend-configurations#extend-the-jest-config
|
|
*/
|
|
|
|
const path = require('path');
|
|
const { grafanaESModules, nodeModulesToTransform } = require('./jest/utils');
|
|
|
|
module.exports = {
|
|
moduleNameMapper: {
|
|
'\\.(css|scss|sass)$': 'identity-obj-proxy',
|
|
'react-inlinesvg': path.resolve(__dirname, 'jest', 'mocks', 'react-inlinesvg.tsx'),
|
|
},
|
|
modulePaths: ['<rootDir>/src'],
|
|
setupFilesAfterEnv: ['<rootDir>/jest-setup.js'],
|
|
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: 'inline',
|
|
jsc: {
|
|
parser: {
|
|
syntax: 'typescript',
|
|
tsx: true,
|
|
decorators: false,
|
|
dynamicImport: true,
|
|
},
|
|
},
|
|
},
|
|
],
|
|
},
|
|
// Jest will throw `Cannot use import statement outside module` if it tries to load an
|
|
// ES module without it being transformed first. ./config/README.md#esm-errors-with-jest
|
|
transformIgnorePatterns: [nodeModulesToTransform(grafanaESModules)],
|
|
};
|