5 lines
116 B
TypeScript
5 lines
116 B
TypeScript
|
|
import path from 'path'
|
||
|
|
|
||
|
|
export const getTestAsset = (name: string) =>
|
||
|
|
path.join(__dirname, '..', 'assets', name)
|