You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Overwrite the g:ex_test_command variable to execute a custom command.
Example:
letg:ex_test_command="mix test --cover /tmp/cover {test}"
This g:ex_test_command variable can be used to support any number of test
runners or pre-loaders. For example, to use
Dispatch:
letg:ex_test_command="Dispatch mix test {test}"
Custom runners
Overwrite the g:ex_test_runner variable to set a custom launch script. At the
moment there are two MacVim-specific runners, i.e. os_x_terminal and
os_x_iterm. The default is os_x_terminal, but you can set this to anything
you want, provided you include the appropriate script inside the plugin's
bin/ directory.
iTerm instead of Terminal
If you use iTerm, you can set g:ex_test_runner to use the included iterm
launching script. This will run the specs in the last session of the current
terminal.
letg:ex_test_runner="os_x_iterm"
If you use the iTerm2 nightlies, the os_x_iterm runner will not work
(due to AppleScript incompatibilities between the old and new versions of iTerm2).
Instead use the os_x_iterm2 runner, configure it like so: