Skip to content

Commit

Permalink
fix(compile): strongly enforced typescript preventing compiling
Browse files Browse the repository at this point in the history
  • Loading branch information
kamescg committed Mar 8, 2022
1 parent 7a47b7c commit a67bc90
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 2 deletions.
1 change: 1 addition & 0 deletions test/DrawPercentageRate.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { expect } from 'chai';
// @ts-ignore
import { ethers, artifacts } from 'hardhat';
import { deployMockContract, MockContract } from 'ethereum-waffle';
import { SignerWithAddress } from '@nomiclabs/hardhat-ethers/signers';
Expand Down
1 change: 1 addition & 0 deletions test/PrizeDistributionFactory.test.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// @ts-ignore
import { ethers, artifacts } from 'hardhat';
import { deployMockContract, MockContract } from 'ethereum-waffle';
import { Signer } from '@ethersproject/abstract-signer';
Expand Down
1 change: 1 addition & 0 deletions test/PrizeFlush.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { expect } from 'chai';
// @ts-ignore
import { ethers, artifacts } from 'hardhat';
import { deployMockContract, MockContract } from 'ethereum-waffle';
import { Signer } from '@ethersproject/abstract-signer';
Expand Down
1 change: 1 addition & 0 deletions test/PrizeTierHistory.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { expect } from 'chai';
// @ts-ignore
import { ethers } from 'hardhat';
import { Signer } from '@ethersproject/abstract-signer';
import { SignerWithAddress } from '@nomiclabs/hardhat-ethers/signers';
Expand Down
1 change: 1 addition & 0 deletions test/PrizeTierHistoryV2.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { expect } from 'chai';
// @ts-ignore
import { ethers } from 'hardhat';
import { Signer } from '@ethersproject/abstract-signer';
import { SignerWithAddress } from '@nomiclabs/hardhat-ethers/signers';
Expand Down
3 changes: 2 additions & 1 deletion test/TwabRewards.test.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
// @ts-ignore
import { ethers } from 'hardhat';
import ERC20MintableInterface from '@pooltogether/v4-core/abis/ERC20Mintable.json';
import TicketInterface from '@pooltogether/v4-core/abis/ITicket.json';
import { deployMockContract, MockContract } from '@ethereum-waffle/mock-contract';
import { SignerWithAddress } from '@nomiclabs/hardhat-ethers/signers';
import { expect } from 'chai';
import { BigNumber, Contract, ContractFactory } from 'ethers';
import { ethers } from 'hardhat';

import { increaseTime as increaseTimeUtil, setTime as setTimeUtil } from './utils/increaseTime';

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { expect } from "chai";
// @ts-ignore
import { ethers } from "hardhat";
import { SignerWithAddress } from "@nomiclabs/hardhat-ethers/signers";
import { Contract, ContractFactory } from "ethers";
Expand Down

0 comments on commit a67bc90

Please sign in to comment.