Skip to content

Commit

Permalink
test: skip radiant v2 and sonne tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeff-CCH committed Oct 17, 2024
1 parent e586709 commit 55de0f7
Show file tree
Hide file tree
Showing 19 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion src/logics/radiant-v2/logic.borrow.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { constants, utils } from 'ethers';
import * as core from '@protocolink/core';
import { expect } from 'chai';

describe('RadiantV2 BorrowLogic', () => {
describe.skip('RadiantV2 BorrowLogic', () => {
context('Test getTokenList', async () => {
BorrowLogic.supportedChainIds.forEach((chainId) => {
it(`network: ${common.toNetworkId(chainId)}`, async () => {
Expand Down
2 changes: 1 addition & 1 deletion src/logics/radiant-v2/logic.deposit.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { constants, utils } from 'ethers';
import * as core from '@protocolink/core';
import { expect } from 'chai';

describe('RadiantV2 DepositLogic', () => {
describe.skip('RadiantV2 DepositLogic', () => {
context('Test getTokenList', async () => {
DepositLogic.supportedChainIds.forEach((chainId) => {
it(`network: ${common.toNetworkId(chainId)}`, async () => {
Expand Down
2 changes: 1 addition & 1 deletion src/logics/radiant-v2/logic.flash-loan.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { constants, utils } from 'ethers';
import { expect } from 'chai';
import { getContractAddress } from './configs';

describe('RadiantV2 FlashLoanLogic', () => {
describe.skip('RadiantV2 FlashLoanLogic', () => {
context('Test getTokenList', async () => {
FlashLoanLogic.supportedChainIds.forEach((chainId) => {
it(`network: ${common.toNetworkId(chainId)}`, async () => {
Expand Down
4 changes: 2 additions & 2 deletions src/logics/radiant-v2/logic.repay.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ import { LendingPool__factory } from './contracts';
import { LogicTestCase } from 'test/types';
import { RepayLogic, RepayLogicFields } from './logic.repay';
import { Service } from './service';
import { arbitrumTokens } from './tokens';
import * as common from '@protocolink/common';
import { constants, utils } from 'ethers';
import * as core from '@protocolink/core';
import { expect } from 'chai';
import { arbitrumTokens } from './tokens';

describe('RadiantV2 RepayLogic', () => {
describe.skip('RadiantV2 RepayLogic', () => {
context('Test getTokenList', async () => {
RepayLogic.supportedChainIds.forEach((chainId) => {
it(`network: ${common.toNetworkId(chainId)}`, async () => {
Expand Down
2 changes: 1 addition & 1 deletion src/logics/radiant-v2/logic.withdraw.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { constants, utils } from 'ethers';
import * as core from '@protocolink/core';
import { expect } from 'chai';

describe('RadiantV2 WithdrawLogic', () => {
describe.skip('RadiantV2 WithdrawLogic', () => {
context('Test getTokenList', async () => {
WithdrawLogic.supportedChainIds.forEach((chainId) => {
it(`network: ${common.toNetworkId(chainId)}`, async () => {
Expand Down
2 changes: 1 addition & 1 deletion src/logics/radiant-v2/service.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import * as common from '@protocolink/common';
import { expect } from 'chai';
import omit from 'lodash/omit';

describe('RadiantV2 Service', () => {
describe.skip('RadiantV2 Service', () => {
const chainIds = [common.ChainId.arbitrum];

context('Test getReserveTokensAddresses', () => {
Expand Down
2 changes: 1 addition & 1 deletion src/logics/sonne/logic.borrow.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { expect } from 'chai';
import { optimismTokens } from './tokens';
import * as smartAccounts from '@protocolink/smart-accounts';

describe('Sonne BorrowLogic', function () {
describe.skip('Sonne BorrowLogic', function () {
context('Test getTokenList', async function () {
BorrowLogic.supportedChainIds.forEach((chainId) => {
it(`network: ${common.toNetworkId(chainId)}`, async function () {
Expand Down
2 changes: 1 addition & 1 deletion src/logics/sonne/logic.repay.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { expect } from 'chai';
import { optimismTokens } from './tokens';
import { toCToken } from './configs';

describe('Sonne RepayLogic', function () {
describe.skip('Sonne RepayLogic', function () {
context('Test getTokenList', async function () {
RepayLogic.supportedChainIds.forEach((chainId) => {
it(`network: ${common.toNetworkId(chainId)}`, async function () {
Expand Down
2 changes: 1 addition & 1 deletion src/logics/sonne/logic.supply.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { expect } from 'chai';
import { optimismTokens } from './tokens';
import { toCToken } from './configs';

describe('Sonne SupplyLogic', function () {
describe.skip('Sonne SupplyLogic', function () {
context('Test getTokenList', async function () {
SupplyLogic.supportedChainIds.forEach((chainId) => {
it(`network: ${common.toNetworkId(chainId)}`, async function () {
Expand Down
2 changes: 1 addition & 1 deletion src/logics/sonne/logic.withdraw.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { expect } from 'chai';
import { optimismTokens } from './tokens';
import { toCToken } from './configs';

describe('Sonne WithdrawLogic', function () {
describe.skip('Sonne WithdrawLogic', function () {
context('Test getTokenList', async function () {
WithdrawLogic.supportedChainIds.forEach((chainId) => {
it(`network: ${common.toNetworkId(chainId)}`, async function () {
Expand Down
2 changes: 1 addition & 1 deletion test/logics/radiant-v2/borrow.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import * as helpers from './helpers';
import hre from 'hardhat';
import * as radiantv2 from 'src/logics/radiant-v2';

describe('mainnet-pb: Test RadiantV2 Borrow Logic', () => {
describe.skip('mainnet-pb: Test RadiantV2 Borrow Logic', () => {
let chainId: number;
let users: SignerWithAddress[];

Expand Down
2 changes: 1 addition & 1 deletion test/logics/radiant-v2/deposit.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import hre from 'hardhat';
import * as radiantv2 from 'src/logics/radiant-v2';
import * as utils from 'test/utils';

describe('mainnet-pb: Test RadiantV2 Deposit Logic', () => {
describe.skip('mainnet-pb: Test RadiantV2 Deposit Logic', () => {
let chainId: number;
let user: SignerWithAddress;

Expand Down
2 changes: 1 addition & 1 deletion test/logics/radiant-v2/flash-loan.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import * as radiantv2 from 'src/logics/radiant-v2';
import * as utility from 'src/logics/utility';
import * as utils from 'test/utils';

describe('mainnet-pb: Test RadiantV2 FlashLoan Logic', () => {
describe.skip('mainnet-pb: Test RadiantV2 FlashLoan Logic', () => {
let chainId: number;
let user: SignerWithAddress;

Expand Down
2 changes: 1 addition & 1 deletion test/logics/radiant-v2/repay.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import hre from 'hardhat';
import * as radiantv2 from 'src/logics/radiant-v2';
import * as utils from 'test/utils';

describe('mainnet-pb: Test RadiantV2 Repay Logic', () => {
describe.skip('mainnet-pb: Test RadiantV2 Repay Logic', () => {
let chainId: number;
let users: SignerWithAddress[];

Expand Down
2 changes: 1 addition & 1 deletion test/logics/radiant-v2/withdraw.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import hre from 'hardhat';
import * as radiantv2 from 'src/logics/radiant-v2';
import * as utils from 'test/utils';

describe('mainnet-pb: Test RadiantV2 Withdraw Logic', () => {
describe.skip('mainnet-pb: Test RadiantV2 Withdraw Logic', () => {
let chainId: number;
let user: SignerWithAddress;

Expand Down
2 changes: 1 addition & 1 deletion test/logics/sonne/borrow.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import hre from 'hardhat';
import * as smartAccounts from '@protocolink/smart-accounts';
import * as sonne from 'src/logics/sonne';

describe('optimism-pb: Test Sonne Borrow Logic', function () {
describe.skip('optimism-pb: Test Sonne Borrow Logic', function () {
let chainId: number;
let wallet: JsonRpcSigner;
let walletAddress: string;
Expand Down
2 changes: 1 addition & 1 deletion test/logics/sonne/repay.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import * as hrehelpers from '@nomicfoundation/hardhat-network-helpers';
import * as sonne from 'src/logics/sonne';
import * as utils from 'test/utils';

describe('optimism-pb: Test Sonne Repay Logic', function () {
describe.skip('optimism-pb: Test Sonne Repay Logic', function () {
let chainId: number;
let user: SignerWithAddress;

Expand Down
2 changes: 1 addition & 1 deletion test/logics/sonne/supply.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import hre from 'hardhat';
import * as sonne from 'src/logics/sonne';
import * as utils from 'test/utils';

describe('optimism-pb: Test Sonne Supply Logic', function () {
describe.skip('optimism-pb: Test Sonne Supply Logic', function () {
let chainId: number;
let user: SignerWithAddress;

Expand Down
2 changes: 1 addition & 1 deletion test/logics/sonne/withdraw.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import hre from 'hardhat';
import * as sonne from 'src/logics/sonne';
import * as utils from 'test/utils';

describe('optimism-pb: Test Sonne Withdraw Logic', function () {
describe.skip('optimism-pb: Test Sonne Withdraw Logic', function () {
let chainId: number;
let user: SignerWithAddress;

Expand Down

0 comments on commit 55de0f7

Please sign in to comment.