mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-01-14 06:43:25 +08:00
14 lines
173 B
JavaScript
14 lines
173 B
JavaScript
|
/**
|
||
|
* Mocked class diagram renderer
|
||
|
*/
|
||
|
|
||
|
import { vi } from 'vitest';
|
||
|
|
||
|
export const draw = vi.fn().mockImplementation(() => {
|
||
|
return '';
|
||
|
});
|
||
|
|
||
|
export default {
|
||
|
draw,
|
||
|
};
|