Merge remote-tracking branch upstream/develop into standardized-pie-definitions

This commit is contained in:
Reda Al Sulais
2023-08-02 15:54:11 +03:00
209 changed files with 9027 additions and 4007 deletions

View File

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