(file: File)
| 47 | } |
| 48 | |
| 49 | static getFileContexts(file: File): Record<string, any>[] { |
| 50 | return TestFixtures._definitions.map(f => f.getFileContext(file)) |
| 51 | } |
| 52 | |
| 53 | static isFixtureOptions(obj: unknown): boolean { |
| 54 | return isObject(obj) && Object.keys(obj as any).some(key => TestFixtures._fixtureOptionKeys.includes(key)) |
no test coverage detected