Skip to content

Commit 5d8b3b3

Browse files
committed
test(fix): fix command
1 parent 012d28a commit 5d8b3b3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
- name: Run bee-dev
4444
run: npx bee-dev --port 16337 &
4545

46-
- name: Run bee-dev
46+
- name: Run bee-dev with --no-swap
4747
run: npx bee-dev --port 16338 --no-swap &
4848

4949
- name: Start fdp-play environment

test/misc/status-swap.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ expect.extend({
77

88
describeCommand('Status command and swap', ({ consoleMessages }) => {
99
it('should print wallet and chequebook balance', async () => {
10-
await invokeTestCli(['stamp', 'status', '--bee-api-url', 'http://localhost:16337'])
10+
await invokeTestCli(['status', '--bee-api-url', 'http://localhost:16337'])
1111
expect(consoleMessages).toMatchLinesInOrder([
1212
['Wallet'],
1313
['xBZZ'],
@@ -19,7 +19,7 @@ describeCommand('Status command and swap', ({ consoleMessages }) => {
1919
})
2020

2121
it('should handle missing wallet and chequebook balance', async () => {
22-
await invokeTestCli(['stamp', 'status', '--bee-api-url', 'http://localhost:16337'])
22+
await invokeTestCli(['status', '--bee-api-url', 'http://localhost:16337'])
2323
expect(consoleMessages).toMatchLinesInOrder([
2424
['Wallet'],
2525
['Wallet balance not available'],

0 commit comments

Comments
 (0)