Skip to content
This repository has been archived by the owner on Dec 27, 2022. It is now read-only.

Commit

Permalink
More flexible test config construction
Browse files Browse the repository at this point in the history
  • Loading branch information
pfrazee committed Sep 17, 2021
1 parent 16ef230 commit 19ed610
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test.ts
Expand Up @@ -17,10 +17,10 @@ export class Config implements ConfigValues {
serverDbId?: string
coreServices: InstallParams[] = [
Object.assign({},
DEFAULT_CORE_SERVICES.find(c => c.sourceUrl === 'https://github.com/atek-cloud/hyper-daemon'),
DEFAULT_CORE_SERVICES.find(c => c.id === 'core.hyper-daemon'),
{config: {SIMULATE_HYPERSPACE: '1'}}
),
Object.assign({}, DEFAULT_CORE_SERVICES.find(c => c.sourceUrl === 'https://github.com/atek-cloud/adb'))
Object.assign({}, DEFAULT_CORE_SERVICES.find(c => c.id === 'core.adb'))
]
defaultMainService = ''
systemAuthTokens: string[] = []
Expand Down

0 comments on commit 19ed610

Please sign in to comment.