We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a74be69 commit cc4a064Copy full SHA for cc4a064
packages/ethereum-contracts/test/contracts/superfluid/ERC20.behavior.ts
@@ -132,23 +132,6 @@ export function shouldBehaveLikeERC20(
132
.to.emit(this.token, "Transfer")
133
.withArgs(tokenOwner, to, amount);
134
});
135
-
136
- it("emits an approval event", async function () {
137
- await expect(
138
- this.token
139
- .connect(spenderSigner)
140
- .transferFrom(tokenOwner, to, amount)
141
- )
142
- .to.emit(this.token, "Approval")
143
- .withArgs(
144
- tokenOwner,
145
- spender,
146
- await this.token.allowance(
147
148
- spender
149
150
- );
151
- });
152
153
154
describe("when the token owner does not have enough balance", function () {
0 commit comments