UNPKG
@uniswap/v4-core
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
🦄 Core smart contracts of Uniswap v4
github.com/Uniswap/v4-core
Uniswap/v4-core
@uniswap/v4-core
/
lib
/
openzeppelin-contracts
/
test
/
utils
/
introspection
/
ERC165.test.js
12 lines
(8 loc)
•
276 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
const
{ shouldSupportInterfaces } =
require
(
'./SupportsInterface.behavior'
);
const
ERC165
= artifacts.
require
(
'$ERC165'
);
contract
(
'ERC165'
,
function
(
) {
beforeEach
(
async
function
(
) {
this
.
mock
=
await
ERC165
.
new
(); });
shouldSupportInterfaces
([
'ERC165'
]); });