Skip to content

Commit

Permalink
temp: FLUID-ETH integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
KanievskyiDanylo committed Jan 7, 2025
1 parent c25f5b2 commit ae0abdc
Showing 1 changed file with 7 additions and 19 deletions.
26 changes: 7 additions & 19 deletions src/dex/fluid-dex/fluid-dex-integration.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -193,25 +193,13 @@ describe('FluidDex', function () {
}
});

describe('wstETH -> ETH', () => {
const tokenASymbol = 'wstETH';
describe.only('FLUID -> ETH', () => {
const tokenASymbol = 'FLUID';
const tokenBSymbol = 'ETH';

const amountsForSwap = [
0n,
1n * BI_POWS[18],
2n * BI_POWS[18],
3n * BI_POWS[18],
4n * BI_POWS[18],
5n * BI_POWS[18],
6n * BI_POWS[18],
7n * BI_POWS[18],
8n * BI_POWS[18],
9n * BI_POWS[18],
10n * BI_POWS[18],
];
const amountsForSwap = [0n, 79923068733005505624n];

it('wstETH -> ETH, getPoolIdentifiers and getPricesVolume SELL', async function () {
it.only('FLUID -> ETH, getPoolIdentifiers and getPricesVolume SELL', async function () {
await testPricingOnNetwork(
fluidDex,
network,
Expand All @@ -226,7 +214,7 @@ describe('FluidDex', function () {
);
});

it('wstETH -> ETH, getPoolIdentifiers and getPricesVolume BUY', async function () {
it('FLUID -> ETH, getPoolIdentifiers and getPricesVolume BUY', async function () {
await testPricingOnNetwork(
fluidDex,
network,
Expand All @@ -241,7 +229,7 @@ describe('FluidDex', function () {
);
});

it('ETH -> wstETH, getPoolIdentifiers and getPricesVolume SELL', async function () {
it('ETH -> FLUID, getPoolIdentifiers and getPricesVolume SELL', async function () {
await testPricingOnNetwork(
fluidDex,
network,
Expand All @@ -256,7 +244,7 @@ describe('FluidDex', function () {
);
});

it('ETH -> wstETH, getPoolIdentifiers and getPricesVolume BUY', async function () {
it('ETH -> FLUID, getPoolIdentifiers and getPricesVolume BUY', async function () {
await testPricingOnNetwork(
fluidDex,
network,
Expand Down

0 comments on commit ae0abdc

Please sign in to comment.