{ // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { "name": "Debug Current Test", "type": "go", "request": "launch", "mode": "test", "program": "${fileDirname}", "args": ["-test.v", "-test.run", "^${selectedText}$"], "env": { "CGO_ENABLED": "1" } }, { "name": "Debug Current Test Function", "type": "go", "request": "launch", "mode": "test", "program": "${fileDirname}", "env": { "CGO_ENABLED": "1" } }, { "name": "Debug All Tests in Current File", "type": "go", "request": "launch", "mode": "test", "program": "${fileDirname}", "args": ["-test.v"], "env": { "CGO_ENABLED": "1" } }, { "name": "Debug All Tests in Current Package", "type": "go", "request": "launch", "mode": "test", "program": "${fileDirname}", "args": ["-test.v", "-count=1"], "env": { "CGO_ENABLED": "1" } }, { "name": "Debug Codex Tests", "type": "go", "request": "launch", "mode": "test", "program": "${workspaceFolder}/codex", "args": ["-test.v"], "env": { "CGO_ENABLED": "1" } }, { "name": "Debug Specific Test (e.g., TestUpload)", "type": "go", "request": "launch", "mode": "test", "program": "${workspaceFolder}/codex", "args": [ "-test.v", "-test.run", "TestUpload" ], "env": { "CGO_ENABLED": "1" } } ] }