diff options
Diffstat (limited to 'test/src')
| -rw-r--r-- | test/src/treesit-tests.el | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/test/src/treesit-tests.el b/test/src/treesit-tests.el index eb6e85c3fd6..c995542a2ae 100644 --- a/test/src/treesit-tests.el +++ b/test/src/treesit-tests.el | |||
| @@ -331,7 +331,11 @@ | |||
| 331 | 'json)) | 331 | 'json)) |
| 332 | ;; `treesit-node-at'. | 332 | ;; `treesit-node-at'. |
| 333 | (should (equal (treesit-node-string | 333 | (should (equal (treesit-node-string |
| 334 | (treesit-node-at 1 2 'json)) | 334 | (treesit-node-at 1 'json)) |
| 335 | "(\"[\")")) | ||
| 336 | ;; `treesit-node-on' | ||
| 337 | (should (equal (treesit-node-string | ||
| 338 | (treesit-node-on 1 2 'json)) | ||
| 335 | "(\"[\")")) | 339 | "(\"[\")")) |
| 336 | ;; `treesit-buffer-root-node'. | 340 | ;; `treesit-buffer-root-node'. |
| 337 | (should (treesit-node-eq | 341 | (should (treesit-node-eq |