Started railroad diagrams

This commit is contained in:
Nikolay Rozhkov
2023-07-06 21:57:47 +03:00
parent b87f1f2098
commit 6a89e28e1e
14 changed files with 230 additions and 2 deletions

View File

@@ -0,0 +1,13 @@
/**
* Mocked Railroad diagram renderer
*/
import { vi } from 'vitest';
export const draw = vi.fn().mockImplementation(() => {
return '';
});
export default {
draw,
};