Skip to content

Commit a0255f0

Browse files
authored
Fixed #684 (#685)
* Fixed #684 * removed unused package * Removed unused packages
1 parent 194e1a3 commit a0255f0

File tree

3 files changed

+775
-601
lines changed

3 files changed

+775
-601
lines changed

e2e/infrastructure/IntegrationTestHelper.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,17 +55,18 @@ export class IntegrationTestHelper {
5555

5656
private async startBootstrapServer(): Promise<{ accounts: string[]; apiUrl: string }> {
5757
this.config = {
58+
report: false,
5859
preset: Preset.bootstrap,
5960
reset: this.startEachTime,
6061
customPreset: './e2e/e2e-preset.yml',
6162
timeout: 60000 * 3,
6263
target: 'target/bootstrap-test',
63-
daemon: false,
64+
detached: false,
6465
user: 'current',
6566
};
6667

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

0 commit comments

Comments
 (0)