Skip to content

Commit 46b53f5

Browse files
authored
Purge Truffle leftovers part 2 - test/ and utils (#181)
2 parents 5cc4739 + 55cb59a commit 46b53f5

35 files changed

+93
-349
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
- [x] `IexecPoco2Delegate.sol`
77

88
### Features
9-
- Purge Truffle leftovers (#180)
9+
- Purge Truffle leftovers (#180, #181)
1010
- Sunset Jenkins pipeline (#178)
1111
- Re-use variable in `IexecPoco2Delegate` in `contribute(...)` function. (#168)
1212
- Remove unnecessary back and forth transfers in `IexecPoco2Delegate` happening during `claim(..)`. (#167)

hardhat.config.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import '@nomicfoundation/hardhat-toolbox';
2-
import '@nomiclabs/hardhat-truffle5';
32
import * as fs from 'fs';
43
import 'hardhat-dependency-compiler';
54
import 'hardhat-deploy';

package-lock.json

Lines changed: 4 additions & 254 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@
5656
"@ensdomains/ens-contracts": "^0.0.3",
5757
"@nomicfoundation/hardhat-network-helpers": "^1.0.11",
5858
"@nomicfoundation/hardhat-toolbox": "^2.0.2",
59-
"@nomiclabs/hardhat-truffle5": "^2.0.7",
6059
"@nomiclabs/hardhat-web3": "^2.0.0",
6160
"@openzeppelin/test-helpers": "^0.5.16",
6261
"@openzeppelin/upgrades-core": "^1.37.1",

test/000_fullchain.test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33

44
import { loadFixture } from '@nomicfoundation/hardhat-network-helpers';
55
import { SignerWithAddress } from '@nomiclabs/hardhat-ethers/signers';
6-
import { ethers, expect } from 'hardhat';
6+
import { expect } from 'chai';
7+
import { ethers } from 'hardhat';
78
import { loadHardhatFixtureDeployment } from '../scripts/hardhat-fixture-deployer';
89
import { IexecInterfaceNative, IexecInterfaceNative__factory } from '../typechain';
910
import { OrdersActors, OrdersAssets, OrdersPrices, buildOrders } from '../utils/createOrders';

test/200_fullchain-bot.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
import { loadFixture } from '@nomicfoundation/hardhat-network-helpers';
55
import { SignerWithAddress } from '@nomiclabs/hardhat-ethers/signers';
6-
import { expect } from 'hardhat';
6+
import { expect } from 'chai';
77
import { loadHardhatFixtureDeployment } from '../scripts/hardhat-fixture-deployer';
88
import { IexecInterfaceNative, IexecInterfaceNative__factory } from '../typechain';
99
import { OrdersActors, OrdersAssets, OrdersPrices, buildOrders } from '../utils/createOrders';

0 commit comments

Comments
 (0)