(filePath: string)
| 67 | } |
| 68 | |
| 69 | loadFixtureFile(filePath: string): this { |
| 70 | this.fixtures.push(...loadFixtureFile(filePath)); |
| 71 | return this; |
| 72 | } |
| 73 | |
| 74 | loadFixtureDir(dirPath: string): this { |
| 75 | this.fixtures.push(...loadFixturesFromDir(dirPath)); |
no test coverage detected