Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion examples/reagent-karma-example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"private": true,
"scripts": {
"build": "npm run clean && shadow-cljs release app",
"ci": "npm run fmt:check && npm run lint && shadow-cljs compile app && npm test",
"ci": "npm run fmt:check && npm run lint && shadow-cljs compile app && npm test && npm run test:karma",
"clean": "rimraf public/js",
"e2e": "shadow-cljs compile e2e && node out/e2e.js",
"fmt:clj": "prettier --write \"**/*.{clj,cljs,cljc,edn}\"",
Expand All @@ -16,6 +16,7 @@
"sc": "shadow-cljs",
"server": "shadow-cljs stop && shadow-cljs start",
"start": "shadow-cljs watch app",
"test:karma": "shadow-cljs compile karma && karma start --single-run --reporters dots",
"test:karma:compile": "shadow-cljs watch karma --config-merge \"{:autorun true}\"",
"test:karma:run": "karma start --reporters junit,dots",
"test:karma:watch": "concurrently --prefix none \"npm run test:karma:run\" \"npm run test:karma:compile\"",
Expand Down
Loading