Now also seeding runners to the test org

ref #110
This commit is contained in:
Nicolai Ort 2021-01-20 17:34:53 +01:00
parent 8870ebdb5e
commit eab0e634a2
1 changed files with 1 additions and 0 deletions

View File

@ -17,6 +17,7 @@ export default class SeedTestRunners implements Seeder {
public async run(factory: Factory, connection: Connection): Promise<any> {
let testOrg: RunnerOrganisation = await this.createTestOrg(connection);
let testTeam: RunnerTeam = await this.createTestTeam(connection, testOrg);
await this.createTestRunners(connection, testOrg);
await this.createTestRunners(connection, testTeam);
}