mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-09-09 02:27:05 +02:00
Fix unit test coverage
This commit is contained in:
@@ -1,38 +0,0 @@
|
|||||||
import { Generator } from 'jison';
|
|
||||||
import { defineConfig } from 'vitest/config';
|
|
||||||
|
|
||||||
const fileRegex = /\.jison$/;
|
|
||||||
|
|
||||||
/** Transforms jison to js. */
|
|
||||||
export function jisonPlugin() {
|
|
||||||
return {
|
|
||||||
name: 'transform-jison',
|
|
||||||
|
|
||||||
transform(src: string, id: string) {
|
|
||||||
if (fileRegex.test(id)) {
|
|
||||||
// eslint-disable-next-line no-console
|
|
||||||
console.log('Transforming', id);
|
|
||||||
return {
|
|
||||||
// @ts-ignore no typings for jison
|
|
||||||
code: new Generator(src, { 'token-stack': true }).generate(),
|
|
||||||
map: null, // provide source map if available
|
|
||||||
};
|
|
||||||
}
|
|
||||||
},
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
export default defineConfig({
|
|
||||||
resolve: {
|
|
||||||
extensions: ['.jison', '.js', '.ts', '.json'],
|
|
||||||
},
|
|
||||||
plugins: [jisonPlugin()],
|
|
||||||
test: {
|
|
||||||
environment: 'jsdom',
|
|
||||||
globals: true,
|
|
||||||
setupFiles: ['src/tests/setup.ts'],
|
|
||||||
coverage: {
|
|
||||||
reporter: ['text', 'json', 'html', 'lcov'],
|
|
||||||
},
|
|
||||||
},
|
|
||||||
});
|
|
@@ -10,5 +10,8 @@ export default defineConfig({
|
|||||||
environment: 'jsdom',
|
environment: 'jsdom',
|
||||||
globals: true,
|
globals: true,
|
||||||
setupFiles: ['src/tests/setup.ts'],
|
setupFiles: ['src/tests/setup.ts'],
|
||||||
|
coverage: {
|
||||||
|
reporter: ['text', 'json', 'html', 'lcov'],
|
||||||
|
},
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
Reference in New Issue
Block a user