Skip to content

Commit 7593342

Browse files
committed
ClojureScript Testing with CLJS
- Adds node_23 to flake.nix - Adds package.json - Adds shadow-cljs to package.json - Adds shadow-cljs.edn to configure test compilation - Updates .github/workflows/ci.yml to run tasks - Updates readme.md to guide users on installing deps, compiling, and running tests - Updates many test files to wrap ratios in reader conditionals
1 parent 93a0028 commit 7593342

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+1958
-392
lines changed

.github/workflows/ci.yml

+37
Original file line numberDiff line numberDiff line change
@@ -55,3 +55,40 @@ jobs:
5555

5656
- name: Run Tests
5757
run: lein test
58+
clojurescript:
59+
strategy:
60+
matrix:
61+
# Uncomment to enable all of them
62+
# os: [ubuntu-latest, macOS-latest, windows-latest]
63+
os: [ubuntu-latest]
64+
65+
runs-on: ${{ matrix.os }}
66+
67+
steps:
68+
- name: Checkout
69+
uses: actions/checkout@v3
70+
71+
# It is important to install java before installing clojure tools which needs java
72+
# exclusions: babashka, clj-kondo and cljstyle
73+
- name: Prepare java
74+
uses: actions/setup-java@v3
75+
with:
76+
distribution: "zulu"
77+
java-version: "17"
78+
79+
- name: Prepare node
80+
uses: actions/setup-node@v4
81+
with:
82+
node-version: "23.x"
83+
check-latest: true
84+
cache: 'npm'
85+
cache-dependency-path: "package-lock.json"
86+
87+
- name: Install Node Dependencies
88+
run: npm ci
89+
90+
- name: Compile Tests
91+
run: npm run build
92+
93+
- name: Run Tests
94+
run: npm test

README.md

+29
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,32 @@ the test suite whenever you save new changes.
2626
```bash
2727
$ lein test-refresh
2828
```
29+
## Running the clojurescript tests
30+
31+
First, make sure you haev node 23 or greater.
32+
33+
Install the node dependencies:
34+
35+
```bash
36+
npm install
37+
```
38+
39+
Compile the tests:
40+
41+
```bash
42+
npx shadow-cljs compile test
43+
```
44+
45+
Once tests are compiled they can be ran with:
46+
47+
```bash
48+
node target/js/node-tests.js
49+
```
50+
51+
### Automated test running during development
52+
53+
If you want to autorun the tests during development run the following:
54+
55+
```bash
56+
npx shadow-cljs watch test
57+
```

flake.lock

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
pkgs.clojure-lsp
1919
pkgs.leiningen
2020
pkgs.temurin-jre-bin-17
21+
pkgs.nodejs_23
2122
];
2223
};
2324
});

0 commit comments

Comments
 (0)