|
@@ -4,17 +4,12 @@ e2e tests for Logseq app.
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
-Run the project's tests (they'll fail until you edit them):
|
|
|
+Before running tests, ensure the following:
|
|
|
+* The app's js and css assets are built and located at ../public/static/.
|
|
|
+* Those assets are served on http://localhost:3002/ via `bb serve`.
|
|
|
|
|
|
- $ clojure -T:build test
|
|
|
-
|
|
|
-## License
|
|
|
+Then, run the project's tests:
|
|
|
|
|
|
-Copyright © 2025 Tiensonqin
|
|
|
-
|
|
|
-_EPLv1.0 is just the default for projects generated by `clj-new`: you are not_
|
|
|
-_required to open source this project, nor are you required to use EPLv1.0!_
|
|
|
-_Feel free to remove or change the `LICENSE` file and remove or update this_
|
|
|
-_section of the `README.md` file!_
|
|
|
+ $ clojure -T:build test
|
|
|
|
|
|
-Distributed under the Eclipse Public License version 1.0.
|
|
|
+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`.
|