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 583ca13 commit 9483d3eCopy full SHA for 9483d3e
examples/minimal/packages/contracts/test/CounterTest.t.sol
@@ -36,9 +36,10 @@ contract CounterTest is MudTest {
36
assertEq(counter, 2);
37
}
38
39
- function testKeysWithValue() public {
40
- uint32 counter = CounterTable.get();
41
- bytes32[] memory keysWithValue = getKeysWithValue(CounterTableTableId, CounterTable.encode(counter));
42
- assertEq(keysWithValue.length, 1);
43
- }
+ // TODO: re-enable the KeysWithValueModule in mud.config.ts once it supports singleton keys
+ // function testKeysWithValue() public {
+ // uint32 counter = CounterTable.get();
+ // bytes32[] memory keysWithValue = getKeysWithValue(CounterTableTableId, CounterTable.encode(counter));
+ // assertEq(keysWithValue.length, 1);
44
+ // }
45
0 commit comments