Implemented more seeding feature/110-seeding #114

Merged
philipp merged 11 commits from feature/110-seeding into dev 2021-01-20 19:12:52 +00:00
Showing only changes of commit eab0e634a2 - Show all commits

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);
}