Skip to content

Commit

Permalink
Merge pull request #194 from emacs-typescript/feature/make-test
Browse files Browse the repository at this point in the history
Make "make test" run without eask. Simplify contributer testing.
  • Loading branch information
josteink authored Jan 17, 2025
2 parents dd10f70 + 5355096 commit 8818e76
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,5 @@ jobs:
- name: Run a multi-line script
run: |
emacs --version
make build
make test
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ ELCS = $(ELS:.el=.elc)
clean:
rm -f $(ELCS)

eask: clean
build: clean
$(EASK) compile

test: eask
test:
+ $(EMACS) -Q -batch -L . -l typescript-mode-tests.el -f ert-run-tests-batch-and-exit

# end

0 comments on commit 8818e76

Please sign in to comment.