Skip to content

Commit

Permalink
Clarify position on Clojurescript
Browse files Browse the repository at this point in the history
  • Loading branch information
NoahTheDuke committed Oct 21, 2024
1 parent 003fd7c commit ebe6d67
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ An alternative to `clojure.test`, aiming to be feature-rich and easily extensibl

- [Getting Started](#getting-started)
- [Why a new test framework?](#why-a-new-test-framework)
- [Why no Clojurescript/other flavors?](#why-no-clojurescriptother-flavors)
- [Usage](#usage)
- [Writing tests with Lazytest](#writing-tests-with-lazytest)
- [Partitioning Individual Tests and Suites](#partitioning-individual-tests-and-suites)
Expand Down Expand Up @@ -108,6 +109,10 @@ Other alternatives such as [Midje][midje], [classic Expectations][expectations v

I like the ideas put forth in Alessandra's post above about Lazytest and hope to experiment with achieving them 14 years later, while borrowing heavily from the work in both the Clojure community and test runners frameworks in other languages.

## Why no Clojurescript/other flavors?

I am not nearly familiar enough with other flavors of Clojure and don't have the bandwidth to support them. If someone from the community is willing to steward that work, I'm open to adding support.

## Usage

With the above `:test` alias, call `clojure -M:test [options]` to run your test suite once, or `clojure -M:test [options] --watch` to use "Watch mode" (see below) to run repeatedly as files change.
Expand Down Expand Up @@ -420,15 +425,15 @@ This will run:
```
````

Whereas these will not (first is skipped, second isn't Clojure):
Whereas these will not (first is skipped, second isn't "clojure" or "clj"):

````markdown
```clojure lazytest/skip=true
(System/exit 1)
;; => exit!!!
```

```python
```clojurescript
print("Hello world!")
```
````
Expand Down

0 comments on commit ebe6d67

Please sign in to comment.