Skip to content

Commit b19dda8

Browse files
committed
Cleanup
1 parent 0a7b50a commit b19dda8

File tree

4 files changed

+8
-37
lines changed

4 files changed

+8
-37
lines changed

.github/workflows/testsuite.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,11 @@ jobs:
3737
with:
3838
lein: 2.9.5
3939

40+
# Install openapi-schema-validator for openapi-tests
41+
# Uses node version from the ubuntu-latest
42+
- name: Install dependencies
43+
run: npm ci
44+
4045
- name: Run tests
4146
run: ./scripts/test.sh clj
4247

@@ -75,9 +80,6 @@ jobs:
7580
- name: Install dependencies
7681
run: npm ci
7782

78-
# - name: Install modules
79-
# run: ./scripts/lein-modules install
80-
8183
- name: Run tests
8284
run: ./scripts/test.sh cljs
8385

karma.conf.js

+1-3
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,13 @@ module.exports = function (config) {
66
// The file itself
77
files: ['ci.js'],
88
frameworks: ['cljs-test'],
9+
reporters: ['progress', 'junit'],
910
plugins: ['karma-cljs-test', 'karma-chrome-launcher'],
1011
colors: true,
1112
logLevel: config.LOG_INFO,
1213
client: {
1314
args: ["shadow.test.karma.init"],
1415
singleRun: true
1516
},
16-
junitReporter: {
17-
outputDir: "target/results/cljs"
18-
}
1917
})
2018
};

package-lock.json

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

package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@
66
"karma": "^6.4.4",
77
"karma-chrome-launcher": "^3.2.0",
88
"karma-cli": "^2.0.0",
9-
"karma-cljs-test": "^0.1.0",
10-
"karma-junit-reporter": "^2.0.1"
9+
"karma-cljs-test": "^0.1.0"
1110
},
1211
"dependencies": {
1312
"shadow-cljs": "^2.28.20"

0 commit comments

Comments
 (0)