emacs-emojify

fork of https://github.com/iqbalansari/emacs-emojify
Log | Files | Refs | LICENSE

commit e1e1a6ab5153b0b63555d2a6d29ec4d773b1f2bd
parent 870878c02d472a7a838bf263c8851fa3e5e52097
Author: Iqbal Ansari <iqbalansari02@yahoo.com>
Date:   Sun,  6 Dec 2015 10:58:50 +0530

Run tests in debug mode

Diffstat:
Mtest/test-helper.el | 7+++++--
1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/test/test-helper.el b/test/test-helper.el @@ -40,7 +40,9 @@ Helps isolate tests from each other's customizations." (emojify-saved-prog-contexts emojify-prog-contexts) (emojify-saved-inhibit-functions emojify-inhibit-functions) (emojify-saved-point-entered-behaviour emojify-point-entered-behaviour) - (emojify-saved-show-help emojify-show-help)) + (emojify-saved-show-help emojify-show-help) + (emojify-saved-debug-mode emojify-debug-mode) + (emojify-debug-mode t)) (unwind-protect (progn ,@forms) @@ -52,7 +54,8 @@ Helps isolate tests from each other's customizations." emojify-prog-contexts emojify-saved-prog-contexts emojify-inhibit-functions emojify-saved-inhibit-functions emojify-point-entered-behaviour emojify-saved-point-entered-behaviour - emojify-show-help emojify-saved-show-help) + emojify-show-help emojify-saved-show-help + emojify-debug-mode emojify-saved-debug-mode) ;; This as a side-effect also re-reads JSON data so no need to ;; re-adjust changes to emojify-emoji-json (emojify-set-emoji-styles emojify-saved-emoji-style))))