Install deps and run tests
This commit is contained in:
parent
005ce6d828
commit
2475965b80
2 changed files with 15 additions and 4 deletions
|
|
@ -25,6 +25,9 @@ jobs:
|
|||
- name: Install eask
|
||||
run: npm install -g @emacs-eask/cli
|
||||
|
||||
- name: Install deps
|
||||
run: eask install-deps --dev
|
||||
|
||||
- name: Run tests
|
||||
run: eask test buttercup
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,13 @@
|
|||
;;; -*- lexical-binding: t; -*-
|
||||
;;; test-counsel-projectile.el --- Buttercup tests for counsel-projectile -*- lexical-binding: t; -*-
|
||||
;;; Commentary:
|
||||
;;; Code:
|
||||
|
||||
(describe "counsel-projectile"
|
||||
(it "always passes"
|
||||
(expect 1 :to-equal 1)))
|
||||
(require 'buttercup)
|
||||
(require 'counsel-projectile)
|
||||
|
||||
;; Example test!
|
||||
(describe "A suite"
|
||||
(it "contains a spec with an expectation"
|
||||
(expect counsel-projectile--buffers :to-be nil)))
|
||||
|
||||
;;; test-counsel-projectile.el ends here
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue