Skip to content

Commit

Permalink
chore: fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
hugomrdias committed Jul 24, 2023
1 parent ca1e4f5 commit 3dd7be6
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions packages/snap/test/e2e/configure.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ test.describe('fil_configure', () => {
network: 'testnet',
rpc: { token: '', url: 'https://api.calibration.node.glif.io' },
unit: {
decimals: 6,
image: 'https://cryptologos.cc/logos/filecoin-fil-logo.svg?v=007',
symbol: 'FIL',
decimals: 18,
image: 'https://filecoin.io/images/filecoin-logo.svg',
symbol: 'tFIL',
},
})
})
Expand All @@ -51,8 +51,8 @@ test.describe('fil_configure', () => {
network: 'mainnet',
rpc: { token: '', url: 'https://api.node.glif.io' },
unit: {
decimals: 6,
image: 'https://cryptologos.cc/logos/filecoin-fil-logo.svg?v=007',
decimals: 18,
image: 'https://filecoin.io/images/filecoin-logo.svg',
symbol: 'FIL',
},
})
Expand All @@ -67,8 +67,8 @@ test.describe('fil_configure', () => {
network: 'mainnet',
rpc: { token: '', url: 'https://api.node.glif.io' },
unit: {
decimals: 6,
image: 'https://cryptologos.cc/logos/filecoin-fil-logo.svg?v=007',
decimals: 18,
image: 'https://filecoin.io/images/filecoin-logo.svg',
symbol: 'FIL',
},
} satisfies ConfigureRequest['params']
Expand All @@ -95,8 +95,8 @@ test.describe('fil_configure', () => {
network: 'testnet',
rpc: { token: '', url: 'https://api.calibration.node.glif.io' },
unit: {
decimals: 6,
image: 'https://cryptologos.cc/logos/filecoin-fil-logo.svg?v=007',
decimals: 18,
image: 'https://filecoin.io/images/filecoin-logo.svg',
symbol: 'FIL',
},
} satisfies ConfigureRequest['params']
Expand All @@ -123,8 +123,8 @@ test.describe('fil_configure', () => {
network: 'testnet',
rpc: { token: '', url: 'https://api.node.glif.io' },
unit: {
decimals: 6,
image: 'https://cryptologos.cc/logos/filecoin-fil-logo.svg?v=007',
decimals: 18,
image: 'https://filecoin.io/images/filecoin-logo.svg',
symbol: 'FIL',
},
} satisfies ConfigureRequest['params']
Expand All @@ -149,8 +149,8 @@ test.describe('fil_configure', () => {
network: 'RANDOM_NETWORK',
rpc: { token: '', url: 'https://api.node.glif.io' },
unit: {
decimals: 6,
image: 'https://cryptologos.cc/logos/filecoin-fil-logo.svg?v=007',
decimals: 18,
image: 'https://filecoin.io/images/filecoin-logo.svg',
symbol: 'FIL',
},
} satisfies ConfigureRequest['params']
Expand Down

0 comments on commit 3dd7be6

Please sign in to comment.