Skip to content

Commit ceaab8a

Browse files
committed
fix(dev): Fix unit test debugging configuration (#4915)
In #4907, all of our jest config was pulled out of `package.json` and put into `jest.config.js` files. This fixes our VSCode debug profile for unit tests to point to the new config.
1 parent 2f7baa4 commit ceaab8a

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

.vscode/launch.json

-3
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,6 @@
4747
// this runs one test at a time, rather than running them in parallel (necessary for debugging so that you know
4848
// you're hitting a single test's breakpoints, in order)
4949
"--runInBand",
50-
// TODO: when we unify jest config, we may need to change this
51-
"--config",
52-
"${workspaceFolder}/packages/${input:getPackageName}/package.json",
5350
// coverage messes up the source maps
5451
"--coverage",
5552
"false",

0 commit comments

Comments
 (0)