Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions e2e/infrastructure/IntegrationTestHelper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,17 +55,18 @@ export class IntegrationTestHelper {

private async startBootstrapServer(): Promise<{ accounts: string[]; apiUrl: string }> {
this.config = {
report: false,
preset: Preset.bootstrap,
reset: this.startEachTime,
customPreset: './e2e/e2e-preset.yml',
timeout: 60000 * 3,
target: 'target/bootstrap-test',
daemon: false,
detached: false,
user: 'current',
};

console.log('Starting bootstrap server');
const configResult = await this.service.start({ ...this.config, daemon: true });
const configResult = await this.service.start({ ...this.config, detached: true });
const accounts = configResult.addresses?.mosaics?.['currency'].map((n) => n.privateKey);
if (!accounts) {
throw new Error('Nemesis accounts could not be loaded!');
Expand Down
Loading