-
-
Notifications
You must be signed in to change notification settings - Fork 645
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WIP - run tests against clojure-ts-mode
Includes top level "main" tests, plus an additional clojure-ts-mode-test. When the clojure-ts-mode one is pulled in clojure-ts-mode should then be "required" and all calls to clojure-mode should redirect to clojure-ts-mode via major-mode-remap-alist.
- Loading branch information
1 parent
ecabc30
commit e4b1f08
Showing
3 changed files
with
39 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
;;; Commentary: | ||
|
||
;; This file is part of CIDER | ||
|
||
;;; Code: | ||
|
||
(require 'buttercup) | ||
(require 'clojure-ts-mode) | ||
|
||
(describe "clojure-ts-mode" | ||
(it "passes" | ||
(expect (= 1 1)))) | ||
|
||
(provide 'clojure-ts-mode-tests) | ||
|
||
;;; clojure-ts-mode-tests.el ends here |