Skip to content

Commit

Permalink
chore(e2e): updated the faucet test code to reflec corrected interface
Browse files Browse the repository at this point in the history
  • Loading branch information
AngelCastilloB committed Jun 21, 2022
1 parent 6a61360 commit 1f87f18
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/e2e/test/faucet/faucet.test.ts
Expand Up @@ -7,7 +7,7 @@ describe('CardanoWalletFaucetProvider', () => {

beforeAll(async () => {

await _faucetProvider.start?.();
await _faucetProvider.start();
let healthCheck = await _faucetProvider.healthCheck();

if (!healthCheck.ok)
Expand All @@ -16,7 +16,7 @@ describe('CardanoWalletFaucetProvider', () => {

afterAll(async() => {

await _faucetProvider.close?.();
await _faucetProvider.close();
});

it('must be able to fund a wallet with the requested amount of ada.', async () => {
Expand Down

0 comments on commit 1f87f18

Please sign in to comment.