mirror of
https://github.com/web-infra-dev/midscene.git
synced 2025-12-14 16:47:22 +00:00
6 lines
124 B
TypeScript
6 lines
124 B
TypeScript
|
|
import { join } from 'node:path';
|
||
|
|
|
||
|
|
export function getFixture(name: string) {
|
||
|
|
return join(__dirname, 'fixtures', name);
|
||
|
|
}
|