Skip to content

Commit

Permalink
test: reenable tests
Browse files Browse the repository at this point in the history
  • Loading branch information
zoruka committed Sep 24, 2024
1 parent a0070ec commit 4fbc273
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ test('it should fetch balance as expected', async () => {
await modalValidator.expectBalanceFetched('ETH')
})

test.skip('it should show disabled networks', async () => {
test('it should show disabled networks', async () => {
const disabledNetworks = 'Arbitrum'

await modalPage.openModal()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ test('it should fetch balance as expected', async () => {
await modalValidator.expectBalanceFetched('ETH')
})

test.skip('it should show disabled networks', async () => {
test('it should show disabled networks', async () => {
const disabledNetworks = 'Arbitrum'

await modalPage.openModal()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ test('it should fetch balance as expected', async () => {
await modalValidator.expectBalanceFetched('ETH')
})

test.skip('it should show disabled networks', async () => {
test('it should show disabled networks', async () => {
const disabledNetworks = 'Arbitrum'

await modalPage.openModal()
Expand Down
2 changes: 1 addition & 1 deletion apps/laboratory/tests/wallet.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ sampleWalletTest('it should fetch balance as expected', async ({ library }) => {
await modalValidator.expectBalanceFetched(library === 'solana' ? 'SOL' : 'ETH')
})

sampleWalletTest.skip('it should show disabled networks', async ({ library }) => {
sampleWalletTest('it should show disabled networks', async ({ library }) => {
const disabledNetworks = library === 'solana' ? 'Solana Unsupported' : 'Arbitrum'

await modalPage.openModal()
Expand Down

0 comments on commit 4fbc273

Please sign in to comment.