mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-27 01:22:49 +00:00
15 lines
478 B
JavaScript
15 lines
478 B
JavaScript
import { NodeSnapshotEnvironment } from '@vitest/snapshot/environment';
|
|
import { g as getWorkerState } from './utils.BX5Fg8C4.js';
|
|
import '@vitest/utils/timers';
|
|
|
|
class VitestNodeSnapshotEnvironment extends NodeSnapshotEnvironment {
|
|
getHeader() {
|
|
return `// Vitest Snapshot v${this.getVersion()}, https://vitest.dev/guide/snapshot.html`;
|
|
}
|
|
resolvePath(filepath) {
|
|
return getWorkerState().rpc.resolveSnapshotPath(filepath);
|
|
}
|
|
}
|
|
|
|
export { VitestNodeSnapshotEnvironment };
|