Open alekseysotnikov opened 4 years ago
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")]}})
Like in
circleci.test
https://github.com/circleci/circleci.test#global-fixturesHow can I define global fixtures that are only run once for the entire test run? I just need an idea.