(text: string)
| 4 | import { LoadedFile } from './loadSchemaFiles' |
| 5 | |
| 6 | export function line(text: string) { |
| 7 | return `${text}${process.platform === 'win32' ? '\r\n' : '\n'}` |
| 8 | } |
| 9 | |
| 10 | export function fixturePath(...parts: string[]) { |
| 11 | return path.join(__dirname, '__fixtures__', ...parts) |
no outgoing calls
no test coverage detected
searching dependent graphs…