diff options
author | James Maa <jmaa@berkeley.edu> | 2024-06-16 18:39:44 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-17 01:39:44 +0000 |
commit | 1d2a91523604cce7dd608408da65bea5645fc7d4 (patch) | |
tree | 7c2b915dc29fffc707a5376002682256bce2c6de /.vscode | |
parent | 0283b298af2d04c7bc013fad7db5966d651f0142 (diff) |
Fix DOMTextScanner entering initial div on backwards seeks (#1071)
* Fix dom-text-scanner entering initial div on reverse seeks
* Add new case
* Add launch.json
* Cleanup launch.json
Diffstat (limited to '.vscode')
-rw-r--r-- | .vscode/launch.json | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 00000000..15f4da51 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,20 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "Launch via NPM", + "request": "launch", + "runtimeArgs": [ + "run", + "test:unit", + "--", + // "test/text-source-range.test.js" // Replace and uncomment this line to run a single test file + ], + "runtimeExecutable": "npm", + "skipFiles": [ + "<node_internals>/**" + ], + "type": "node" + } + ] +}
\ No newline at end of file |