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
{{ message }}
This repository was archived by the owner on Oct 28, 2024. It is now read-only.
Use `circleci.test/test-var` to run a single test fn:
69
82
```clojure
70
83
(circleci.test/test-var #'my.test.ns/my-test)
@@ -82,7 +95,10 @@ running all tests that exist on disk.
82
95
83
96
### Global fixtures
84
97
85
-
In addition to `:once` and `:each` fixtures from `clojure.test`, you can define global fixtures that are only run once for the entire test run, no matter how many namespaces you run. This should be declared in your config file rather in any one individual test file though; otherwise it may not get loaded:
98
+
In addition to `:once` and `:each` fixtures from `clojure.test`, you can define
99
+
global fixtures that are only run once for the entire test run, no matter how
100
+
many namespaces you run. This should be declared in your config file rather in
101
+
any one individual test file though; otherwise it may not get loaded:
86
102
87
103
```clj
88
104
{:global-fixture (fn [f]
@@ -164,13 +180,16 @@ and will not work with code that assumes it has control of that class.
164
180
## Design goals
165
181
166
182
#### Compatibility with tests written using `clojure.test`
183
+
167
184
Don't force people to re-write tests just to use a different test runner.
168
185
169
-
Maintain compatibility with the `clojure.test` assertion expansions such as [slingshot.test](https://github.com/scgilardi/slingshot/blob/release/src/slingshot/test.clj)
186
+
Maintain compatibility with the `clojure.test` assertion expansions such as
0 commit comments