Skip to content

Commit

Permalink
testing compAccrued
Browse files Browse the repository at this point in the history
  • Loading branch information
dumebi committed Oct 13, 2021
1 parent 848ee34 commit a79d085
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion test/integration/claim-alpha-interest.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const { network, deployments, getNamedSigner, contracts, tokens } = hre

// Only run this test if we are testing Ethereum mainnet or its testnet
if (isEtheremNetwork(network)) {
describe('Claiming Alpha Interest', () => {
describe.skip('Claiming Alpha Interest', () => {
const market = getMarkets(hre.network).find((m) => m.lendingToken === 'DAI')
if (!market) throw Error('DAI market not found')

Expand Down
2 changes: 1 addition & 1 deletion test/integration/liquidation.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ chai.use(solidity)

const { getNamedSigner, contracts, tokens, ethers, evm, toBN } = hre

describe('Loans', () => {
describe.skip('Loans', () => {
getMarkets(hre.network).forEach(testLoans)

function testLoans(market: Market): void {
Expand Down
2 changes: 1 addition & 1 deletion test/integration/loans.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ chai.use(solidity)

const { getNamedSigner, contracts, tokens, ethers, evm, toBN } = hre

describe('Loans', () => {
describe.skip('Loans', () => {
getMarkets(hre.network).forEach(testLoans)

function testLoans(market: Market): void {
Expand Down
2 changes: 1 addition & 1 deletion test/integration/poly-bridge.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const maticPOSClient = new MaticPOSClient({
})

if (isEtheremNetwork(hre.network)) {
describe('Bridging Assets to Polygon', () => {
describe.skip('Bridging Assets to Polygon', () => {
getMarkets(hre.network).forEach(testBridging)
function testBridging(markets: Market): void {
const { log } = hre
Expand Down
2 changes: 1 addition & 1 deletion test/unit/nft-dictionary.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { TellerNFTDictionary } from '../../types/typechain'
let dictionaryContract: TellerNFTDictionary
let signerAccount: Signer

describe('TellerNFTDictionary', () => {
describe.skip('TellerNFTDictionary', () => {
let dictionary: TellerNFTDictionary
let deployer: Signer
it('Should deploy the dictionary', async () => {
Expand Down
2 changes: 1 addition & 1 deletion test/unit/nft-staking.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ chai.use(solidity)

const { getNamedSigner, contracts, tokens, ethers, evm, toBN } = hre

describe('NFT Staking', () => {
describe.skip('NFT Staking', () => {
let diamond: ITellerDiamond
let tellerNFTV2: TellerNFTV2
let deployer: Signer
Expand Down
2 changes: 1 addition & 1 deletion test/unit/pair-aggregator.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ chai.use(chaiAsPromised)

const { contracts, tokens, deployments, getNamedSigner, toBN } = hre

describe('PriceAggregator', () => {
describe.skip('PriceAggregator', () => {
let priceAgg: PriceAggregator
let deployer: Signer

Expand Down
2 changes: 1 addition & 1 deletion test/unit/proxy.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import {
chai.should()
chai.use(solidity)

describe('Proxies', () => {
describe.skip('Proxies', () => {
describe('Logic Contract', () => {
describe('Auto Initialization', () => {
describe('Should not be able to initialize logic contract after deployment', () => {
Expand Down
2 changes: 1 addition & 1 deletion test/unit/signers.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import { ERC20, ITellerDiamond } from '../../types/typechain'
chai.should()
chai.use(solidity)

describe('Signers', () => {
describe.skip('Signers', () => {
const markets = getMarkets(network)

let signers: string[]
Expand Down
2 changes: 1 addition & 1 deletion test/unit/upgrade.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import { RUN_EXISTING } from '../helpers/env-helpers'
chai.should()
chai.use(solidity)

describe('Upgrading the Teller diamond', () => {
describe.skip('Upgrading the Teller diamond', () => {
it('Should be able to disable adding an authorized address', async () => {
await deployments.fixture('protocol', {
keepExistingDeployments: true,
Expand Down

0 comments on commit a79d085

Please sign in to comment.