mirror of
https://github.com/konvajs/konva.git
synced 2025-08-20 07:19:37 +08:00
14 lines
286 B
JavaScript
14 lines
286 B
JavaScript
export async function mochaGlobalSetup() {
|
|
await import(new URL('../.test-temp/src/skia-backend.js', import.meta.url));
|
|
|
|
globalThis.Path2D ??= class Path2D {
|
|
constructor(path) {
|
|
this.path = path;
|
|
}
|
|
|
|
get [Symbol.toStringTag]() {
|
|
return `Path2D`;
|
|
}
|
|
};
|
|
}
|