;;; tests/navigation.el --- Some tests for js2-mode. ;; Copyright (C) 2009, 2011-2013 Free Software Foundation, Inc. ;; This file is part of GNU Emacs. ;; GNU Emacs is free software: you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by ;; the Free Software Foundation, either version 3 of the License, or ;; (at your option) any later version. ;; GNU Emacs is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;; GNU General Public License for more details. ;; You should have received a copy of the GNU General Public License ;; along with GNU Emacs. If not, see . ;;; Code: (require 'ert) (require 'js2-mode) (cl-defun js2-navigation-helper (buffer-content expected-point &optional (point-offset 1)) (with-temp-buffer (insert buffer-content) (js2-mode) (goto-char (or (- (point) point-offset))) (js2-jump-to-definition) (should (= (point) expected-point)))) (ert-deftest js2-jump-to-var () (js2-navigation-helper "var soup = 2; soup" 5)) (ert-deftest js2-jump-to-function () (js2-navigation-helper "function aFunction() {}; aFunction" 1)) (ert-deftest js2-jump-to-function-parameters () (js2-navigation-helper "var p1 = 4; function aFunction(p1, p2) {p1};" 32 4)) (ert-deftest js2-jump-to-object-property () (js2-navigation-helper "var aObject = {prop1: 3, prop2: \"hello\"}; aObject.prop1" 16))