eftest
eftest copied to clipboard
Does eftest has the support of global fixtures?
Like in circleci.test https://github.com/circleci/circleci.test#global-fixtures
How can I define global fixtures that are only run once for the entire test run? I just need an idea.
No, not currently. However the original author of fixtures now thinks there are better alternatives to them.
How can I define global fixtures that are only run once for the entire test run? I just need an idea.
Try Leiningen's :injections keyword and enable it when you call eftest.
lein with-profile +test-injections eftest
(defproject ..
:profiles {:test-injections {:injections [(prn "hello")]}})