emacs-jest
emacs-jest copied to clipboard
A package to run jest inside emacs
Hi, Is it possible to set the jest test buffer to readonly by default? Thanks :)
I have been setting up jest.el for my projects and noticed that the default value of `jest-executable` (`npm test`) is not that general. In my case, the default breaks because...
There are a few thing that are left over from the pytest pilfering such as ``` -d run doctest (--doctest-modules) ``` That need to be removed.
Line: 385 `python-pdbtrack-comint-output-filter-function` ``` (when jest-pdb-track (add-hook 'comint-output-filter-functions 'python-pdbtrack-comint-output-filter-function nil t)) ``` The code only requires ``` (require 'comint) (require 'compile) (require 'js2-mode) (require 'dash) (require 'dash-functional) (require 'magit-popup) (require...
I've been trying to use your package without good results, for the installation I'm using `use-package` in this way: ```elisp ;; Jest mode (use-package jest :ensure t :config (setq jest-executable...
When trying to run any `jest-` function I get the following error: `Symbol's function definition is void: s-prefix-p` I'm running emacs 26.2
Hi! I have to use ``` :config (require 'cc-defs) ``` in my `use-package` declaration of `jest`. Otherwise, I get `invalid function c-int-to-char` errors when testing single functions.
PR #29 is a basic implementation that seems to fix this. For me some of the rules for java (and cucumber) were matching but they didn't do the right thing....
Links in tracebacks in compile buffer weren't working for me. Fix them. This provides a function `(jest-load-compilation-errors)` that modifies the global variables `compilation-error-regexp-alist-alist` and `compilation-error-regexp-alist` to support jest links. This...