|
75 | 75 | "preLaunchTask": "npm: testenv:run", |
76 | 76 | "postDebugTask": "npm: testenv:stop", |
77 | 77 | }, |
| 78 | + { |
| 79 | + "type": "node", |
| 80 | + "request": "launch", |
| 81 | + "name": "Jest: Admin", |
| 82 | + "program": "${workspaceFolder}/node_modules/jest/bin/jest", |
| 83 | + "args": [ |
| 84 | + "--testTimeout=3600000", |
| 85 | + "--runInBand", |
| 86 | + "--no-cache", |
| 87 | + "${workspaceFolder}/tests/admin/" |
| 88 | + ], |
| 89 | + "outputCapture": "std", |
| 90 | + "console": "integratedTerminal", |
| 91 | + "preLaunchTask": "npm: testenv:run", |
| 92 | + "postDebugTask": "npm: testenv:stop", |
| 93 | + }, |
| 94 | + { |
| 95 | + "type": "node", |
| 96 | + "request": "launch", |
| 97 | + "name": "Jest: API", |
| 98 | + "program": "${workspaceFolder}/node_modules/jest/bin/jest", |
| 99 | + "args": [ |
| 100 | + "--testTimeout=3600000", |
| 101 | + "--runInBand", |
| 102 | + "--no-cache", |
| 103 | + "${workspaceFolder}/tests/api/" |
| 104 | + ], |
| 105 | + "outputCapture": "std", |
| 106 | + "console": "integratedTerminal", |
| 107 | + "preLaunchTask": "npm: testenv:run", |
| 108 | + "postDebugTask": "npm: testenv:stop", |
| 109 | + }, |
| 110 | + { |
| 111 | + "type": "node", |
| 112 | + "request": "launch", |
| 113 | + "name": "Jest: Chainhook", |
| 114 | + "program": "${workspaceFolder}/node_modules/jest/bin/jest", |
| 115 | + "args": [ |
| 116 | + "--testTimeout=3600000", |
| 117 | + "--runInBand", |
| 118 | + "--no-cache", |
| 119 | + "${workspaceFolder}/tests/chainhook/", |
| 120 | + ], |
| 121 | + "outputCapture": "std", |
| 122 | + "console": "integratedTerminal", |
| 123 | + "preLaunchTask": "npm: testenv:run", |
| 124 | + "postDebugTask": "npm: testenv:stop", |
| 125 | + }, |
| 126 | + { |
| 127 | + "type": "node", |
| 128 | + "request": "launch", |
| 129 | + "name": "Jest: Token Queue", |
| 130 | + "program": "${workspaceFolder}/node_modules/jest/bin/jest", |
| 131 | + "args": [ |
| 132 | + "--testTimeout=3600000", |
| 133 | + "--runInBand", |
| 134 | + "--no-cache", |
| 135 | + "${workspaceFolder}/tests/token-queue/" |
| 136 | + ], |
| 137 | + "outputCapture": "std", |
| 138 | + "console": "integratedTerminal", |
| 139 | + "preLaunchTask": "npm: testenv:run", |
| 140 | + "postDebugTask": "npm: testenv:stop", |
| 141 | + }, |
78 | 142 | ] |
79 | 143 | } |
0 commit comments