aboutsummaryrefslogtreecommitdiffhomepage
path: root/.vscode/launch.json
blob: 998732a9141ace21c27aeabea8505c1a91700614 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
  "version": "0.2.0",
  "configurations": [
    {
      "type": "node",
      "request": "launch",
      "name": "debug",
      "program": "${workspaceFolder}/lib/renovate.ts",
      "env": {
        "LOG_LEVEL": "debug"
      },
      "console": "integratedTerminal",
      "runtimeArgs": ["-r", "ts-node/register/transpile-only"],
      "skipFiles": ["<node_internals>/**/*.js"]
    },
    {
      "type": "node",
      "request": "launch",
      "name": "debug (clean cache)",
      "program": "${workspaceFolder}/lib/renovate.ts",
      "env": {
        "LOG_LEVEL": "debug"
      },
      "preLaunchTask": "npm: clean-cache",
      "console": "integratedTerminal",
      "runtimeArgs": ["-r", "ts-node/register/transpile-only"],
      "skipFiles": ["<node_internals>/**/*.js"]
    },
    {
      "type": "node",
      "request": "launch",
      "name": "Jest Current File",
      "runtimeExecutable": "pnpm",
      "program": "jest",
      "args": [
        "--runInBand",
        "--collectCoverage=false",
        "--testTimeout=100000000",
        "--runTestsByPath",
        "${relativeFile}"
      ],
      "env": {
        "NODE_ENV": "test",
        "LOG_LEVEL": "debug"
      },
      "console": "integratedTerminal",
      "runtimeArgs": ["--preserve-symlinks"],
      "skipFiles": ["<node_internals>/**/*.js"]
    },
    {
      "type": "node",
      "request": "launch",
      "name": "Jest All",
      "runtimeExecutable": "pnpm",
      "program": "jest",
      "args": [
        "--runInBand",
        "--collectCoverage=false",
        "--testTimeout=100000000"
      ],
      "env": {
        "NODE_ENV": "test",
        "LOG_LEVEL": "debug"
      },
      "console": "integratedTerminal",
      "runtimeArgs": ["--preserve-symlinks"],
      "skipFiles": ["<node_internals>/**/*.js"]
    },
    {
      "type": "node",
      "request": "launch",
      "name": "Jest Current Folder",
      "runtimeExecutable": "pnpm",
      "program": "jest",
      "args": [
        "--runInBand",
        "--collectCoverage=false",
        "--testTimeout=100000000",
        "--roots=${workspaceFolder}/${relativeFileDirname}"
      ],
      "console": "integratedTerminal",
      "runtimeArgs": ["--preserve-symlinks"],
      "skipFiles": ["<node_internals>/**/*.js"]
    },
    {
      "type": "node",
      "name": "vscode-jest-tests.v2",
      "request": "launch",
      "console": "integratedTerminal",
      "internalConsoleOptions": "openOnSessionStart",
      "cwd": "${workspaceFolder}",
      "runtimeExecutable": "node",
      "runtimeArgs": ["--experimental-vm-modules"],
      "program": "node_modules/jest/bin/jest.js",
      "args": [
        "--runInBand",
        "--watchAll=false",
        "--testTimeout=100000000",
        "--coverage=false",
        "--runTestsByPath",
        "${jest.testFile}",
        "--testNamePattern",
        "${jest.testNamePattern}"
      ],
      "env": {
        "NODE_ENV": "test",
        "LOG_LEVEL": "trace",
        "GIT_ALLOW_PROTOCOL": "file"
      }
    }
  ]
}