We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ELISP> (require 'test-org-ehtml) *** Eval error *** Cannot open load file: no such file or directory, test-org-ehtml
Do I need to have some testing stuff installed to do this? (Emacs newb)
The text was updated successfully, but these errors were encountered:
It's in test/lisp, which needs to be on your load-path. I presume the Makefile takes care of that.
You can give it a "manual" whirl like this:
mkdir whatever cd whatever touch init.el mkdir vendor git clone https://github.com/eschulte/emacs-web-server vendor/emacs-web-server git clone https://github.com/eschulte/emacs-web-server vendor/org-ehtml
Put this in init.el:
(add-to-list (quote load-path) (expand-file-name "vendor/org-ehtml/src" (file-name-directory load-file-name))) (add-to-list (quote load-path) (expand-file-name "vendor/emacs-web-server" (file-name-directory load-file-name))) (add-to-list (quote load-path) (expand-file-name "vendor/org-ehtml/test/lisp" (file-name-directory load-file-name))) (require 'test-org-ehtml) (ert "org-ehtml")
Then run this:
emacs -Q --batch -l init.el
Sorry, something went wrong.
No branches or pull requests
Do I need to have some testing stuff installed to do this? (Emacs newb)
The text was updated successfully, but these errors were encountered: