mirror of
https://github.com/web-infra-dev/midscene.git
synced 2025-07-04 15:41:20 +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);
|
||
|
}
|