mirror of
https://github.com/penpot/penpot.git
synced 2025-01-09 00:10:11 -05:00
651 B
651 B
Testing guide
Backend / Common
You can run the tests directly with:
~/penpot/backend$ clojure -M:dev:tests
Alternatively, you can run them from a REPL. First starting a REPL.
~/penpot/backend$ scripts/repl
And then:
user=> (run-tests)
user=> (run-tests 'namespace)
user=> (run-tests 'namespace/test)
Frontend
Frontend tests have to be compiled first, and then run with node.
npx shadow-cljs compile tests && node target/tests.js
Linter
We can execute the linter for the whole codebase with the following command
npx clj-kondo --lint common:backend/src:frontend/src