(projectId: string)
| 431 | |
| 432 | |
| 433 | export async function setupFixtures(projectId: string): Promise<void> { |
| 434 | const client = getClient(); |
| 435 | await deleteFixtures(client, projectId); |
| 436 | await insertFixtures(client, projectId); |
| 437 | await client.close(); |
| 438 | } |
| 439 | |
| 440 | export async function teardownFixtures(projectId: string): Promise<void> { |
| 441 | const client = getClient(); |
no test coverage detected