We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b93171b commit aa82c30Copy full SHA for aa82c30
spec/token/common/ERC2981.behavior.ts
@@ -1,3 +1,4 @@
1
+import { describeBehaviorOfERC165 } from '../../introspection';
2
import { SignerWithAddress } from '@nomiclabs/hardhat-ethers/signers';
3
import { describeFilter } from '@solidstate/library';
4
import { ERC2981Mock } from '@solidstate/typechain-types';
@@ -24,6 +25,14 @@ export function describeBehaviorOfERC2981(
24
25
instance = await deploy();
26
});
27
28
+ describeBehaviorOfERC165(
29
+ deploy,
30
+ {
31
+ interfaceIds: ['0x2a55205a'],
32
+ },
33
+ skips,
34
+ );
35
+
36
describe('#royaltyInfo()', () => {
37
describe('reverts if', () => {
38
it('royalty exceeds maximum', async function () {
0 commit comments