diff --git a/.vscode/launch.json b/.vscode/launch.json index 8987b5680c0..66fabebba47 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -25,6 +25,258 @@ "OSMOSIS_E2E_DEBUG_LOG": "false", }, "preLaunchTask": "e2e-setup" - } + }, + { + "name": "x/concentrated-liquidity", + "type": "go", + "request": "launch", + "mode": "test", + "program": "${workspaceFolder}/x/concentrated-liquidity", + "args": [ + "-test.timeout", + "30m", + "-test.run", + "TestKeeperTestSuite/TestYourName", + "-test.v" + ], + }, + { + "name": "x/cosmwasmpool", + "type": "go", + "request": "launch", + "mode": "test", + "program": "${workspaceFolder}/x/cosmwasmpool", + "args": [ + "-test.timeout", + "30m", + "-test.run", + "TestKeeperTestSuite/TestYourName", + "-test.v" + ], + }, + { + "name": "x/downtime-detector", + "type": "go", + "request": "launch", + "mode": "test", + "program": "${workspaceFolder}/x/downtime-detector", + "args": [ + "-test.timeout", + "30m", + "-test.run", + "TestKeeperTestSuite/TestYourName", + "-test.v" + ], + }, + { + "name": "x/epochs", + "type": "go", + "request": "launch", + "mode": "test", + "program": "${workspaceFolder}/x/epochs", + "args": [ + "-test.timeout", + "30m", + "-test.run", + "TestKeeperTestSuite/TestYourName", + "-test.v" + ], + }, + { + "name": "x/gamm", + "type": "go", + "request": "launch", + "mode": "test", + "program": "${workspaceFolder}/x/gamm", + "args": [ + "-test.timeout", + "30m", + "-test.run", + "TestKeeperTestSuite/TestYourName", + "-test.v" + ], + }, + { + "name": "x/ibc-hooks", + "type": "go", + "request": "launch", + "mode": "test", + "program": "${workspaceFolder}/x/ibc-hooks", + "args": [ + "-test.timeout", + "30m", + "-test.run", + "TestKeeperTestSuite/TestYourName", + "-test.v" + ], + }, + { + "name": "x/ibc-rate-limit", + "type": "go", + "request": "launch", + "mode": "test", + "program": "${workspaceFolder}/x/ibc-rate-limit", + "args": [ + "-test.timeout", + "30m", + "-test.run", + "TestKeeperTestSuite/TestYourName", + "-test.v" + ], + }, + { + "name": "x/incentives", + "type": "go", + "request": "launch", + "mode": "test", + "program": "${workspaceFolder}/x/incentives", + "args": [ + "-test.timeout", + "30m", + "-test.run", + "TestKeeperTestSuite/TestYourName", + "-test.v" + ], + }, + { + "name": "x/lockup", + "type": "go", + "request": "launch", + "mode": "test", + "program": "${workspaceFolder}/x/lockup", + "args": [ + "-test.timeout", + "30m", + "-test.run", + "TestKeeperTestSuite/TestYourName", + "-test.v" + ], + }, + { + "name": "x/mint", + "type": "go", + "request": "launch", + "mode": "test", + "program": "${workspaceFolder}/x/mint", + "args": [ + "-test.timeout", + "30m", + "-test.run", + "TestKeeperTestSuite/TestYourName", + "-test.v" + ], + }, + { + "name": "x/pool-incentives", + "type": "go", + "request": "launch", + "mode": "test", + "program": "${workspaceFolder}/x/pool-incentives", + "args": [ + "-test.timeout", + "30m", + "-test.run", + "TestKeeperTestSuite/TestYourName", + "-test.v" + ], + }, + { + "name": "x/poolmanager", + "type": "go", + "request": "launch", + "mode": "test", + "program": "${workspaceFolder}/x/poolmanager", + "args": [ + "-test.timeout", + "30m", + "-test.run", + "TestKeeperTestSuite/TestYourName", + "-test.v" + ], + }, + { + "name": "x/protorev", + "type": "go", + "request": "launch", + "mode": "test", + "program": "${workspaceFolder}/x/protorev", + "args": [ + "-test.timeout", + "30m", + "-test.run", + "TestKeeperTestSuite/TestYourName", + "-test.v" + ], + }, + { + "name": "x/superfluid", + "type": "go", + "request": "launch", + "mode": "test", + "program": "${workspaceFolder}/x/superfluid", + "args": [ + "-test.timeout", + "30m", + "-test.run", + "TestKeeperTestSuite/TestYourName", + "-test.v" + ], + }, + { + "name": "x/tokenfactory", + "type": "go", + "request": "launch", + "mode": "test", + "program": "${workspaceFolder}/x/tokenfactory", + "args": [ + "-test.timeout", + "30m", + "-test.run", + "TestKeeperTestSuite/TestYourName", + "-test.v" + ], + }, + { + "name": "x/twap", + "type": "go", + "request": "launch", + "mode": "test", + "program": "${workspaceFolder}/x/twap", + "args": [ + "-test.timeout", + "30m", + "-test.run", + "TestKeeperTestSuite/TestYourName", + "-test.v" + ], + }, + { + "name": "x/txfees", + "type": "go", + "request": "launch", + "mode": "test", + "program": "${workspaceFolder}/x/txfees", + "args": [ + "-test.timeout", + "30m", + "-test.run", + "TestKeeperTestSuite/TestYourName", + "-test.v" + ], + }, + { + "name": "x/valset-pref", + "type": "go", + "request": "launch", + "mode": "test", + "program": "${workspaceFolder}/x/valset-pref", + "args": [ + "-test.timeout", + "30m", + "-test.run", + "TestKeeperTestSuite/TestYourName", + "-test.v" + ], + }, ] } \ No newline at end of file