Skip to content

Commit

Permalink
fix(integration_test): fix wallet-cli integration tests (#4132)
Browse files Browse the repository at this point in the history
Description
---
* Added a missing argument on wallet CLI invocation in the integration tests
* Tagged an existing broken test

Motivation and Context
---
Currently, the integration test with the tag `@wallet-cli` all fail due to a missing argument when invoking the wallet CLI application. Also, one of the DAN layer test is broken.

How Has This Been Tested?
---
The integration tests with the tag `@wallet-cli` now pass
  • Loading branch information
mrnaveira authored May 25, 2022
1 parent 682aa5d commit 4464064
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion integration_tests/features/WalletCli.feature
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,8 @@ Feature: Wallet CLI
Given I have a base node BASE
And I have wallet WALLET connected to base node BASE
Then I run whois BASE on wallet WALLET via command line


@broken
Scenario: As a user I want to set sidechain committee via command line
Given I have a base node BASE
And I have wallet WALLET connected to base node BASE
Expand Down
1 change: 1 addition & 0 deletions integration_tests/helpers/walletProcess.js
Original file line number Diff line number Diff line change
Expand Up @@ -277,6 +277,7 @@ class WalletProcess {
"--command",
command,
"--non-interactive",
"--network",
"localnet",
];
if (this.logFilePath) {
Expand Down

0 comments on commit 4464064

Please sign in to comment.