mirror of
https://github.com/logseq/logseq.git
synced 2026-04-27 15:45:00 +00:00
16 lines
467 B
Markdown
16 lines
467 B
Markdown
# e2e
|
|
|
|
e2e tests for Logseq app.
|
|
|
|
## Usage
|
|
|
|
Before running tests, ensure the following:
|
|
* The app's js and css assets are built and located at ../public/.
|
|
* Those assets are served on http://localhost:3002/ via `bb serve`.
|
|
|
|
Then, run the project's tests:
|
|
|
|
$ clojure -T:build test
|
|
|
|
If you would like to run individual tests, pass options to the test runner through `clojure -M:test`. For example, add a `^:focus` on a test and then run `clojure -M:test -i focus`.
|