mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-01-28 07:03:17 +08:00
fe8f52fb1b
Coverage for `.jison` files doesn't make sense, since most of the created JS lines are auto-generated. If jison ever adds a source-map feature, we can renable coverage for jison.
25 lines
817 B
JavaScript
25 lines
817 B
JavaScript
const path = require('path');
|
|
|
|
/** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */
|
|
module.exports = {
|
|
testEnvironment: 'jsdom',
|
|
preset: 'ts-jest',
|
|
transform: {
|
|
'^.+\\.jsx?$': ['babel-jest', { rootMode: 'upward' }],
|
|
'^.+\\.jison$': [
|
|
path.resolve(__dirname, './src/jison/transformer.js'),
|
|
{ 'token-stack': true },
|
|
],
|
|
},
|
|
coveragePathIgnorePatterns: [
|
|
'/node_modules/',
|
|
'^.+\\.jison$', // might be able to fix in future if .jison adds source-map support
|
|
],
|
|
transformIgnorePatterns: ['/node_modules/(?!dagre-d3-renderer/lib|khroma).*\\.js'],
|
|
testPathIgnorePatterns: ['/node_modules/', '.cache', './cypress'],
|
|
moduleNameMapper: {
|
|
'\\.(css|scss)$': 'identity-obj-proxy',
|
|
},
|
|
moduleFileExtensions: ['js', 'json', 'jsx', 'ts', 'tsx', 'node', 'jison'],
|
|
};
|