-
Notifications
You must be signed in to change notification settings - Fork 219
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(integration-test): update initOptions with '--dapp-template' para…
…meter
- Loading branch information
Showing
1 changed file
with
1 addition
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -103,6 +103,7 @@ export const gettingStartedWorkflowTest = async (t, options = {}) => { | |
if (process.env.AGORIC_INIT_OPTIONS) { | ||
const opts = JSON.parse(process.env.AGORIC_INIT_OPTIONS); | ||
initOptions.push(...opts); | ||
initOptions['--dapp-template'] = 'dapp-fungible-faucet'; | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
LuqiPan
Author
Contributor
|
||
} | ||
t.is( | ||
await myMain(['init', ...initOptions, 'dapp-foo']), | ||
|
This option should be provided first so it allows overrides. Here it forces it.