chore: add TODO in test

This commit is contained in:
royvardhan
2025-01-24 22:00:13 +05:30
parent c982ed99e8
commit f0f9339101

View File

@@ -212,12 +212,15 @@ contract TychoRouterTest is TychoRouterTestSetup {
assertEq(tychoRouter.paused(), false);
tychoRouter.pause();
assertEq(tychoRouter.paused(), true);
// TODO: test swap calls when implemeted
vm.stopPrank();
vm.startPrank(UNPAUSER);
tychoRouter.unpause();
assertEq(tychoRouter.paused(), false);
vm.stopPrank();
}
function testPauseFailures() public {