Skip to content

Commit 29dadb0

Browse files
committed
don't fail on empty test suite
1 parent bf759a6 commit 29dadb0

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
run: npm run build-package
3535

3636
- name: Test library
37-
run: npm test -- --watch=false --browsers=ChromeHeadless
37+
run: npm test -- --watch=false --browsers=ChromeHeadless --no-fail-on-empty-test-suite
3838

3939
- name: Publish to npm
4040
run: |

projects/ngx-angular-query-builder/karma.conf.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ module.exports = function (config) {
3636
autoWatch: true,
3737
browsers: ["Chrome"],
3838
singleRun: false,
39-
restartOnFileChange: true
39+
restartOnFileChange: true,
40+
failOnEmptyTestSuite: false
4041
});
4142
};

0 commit comments

Comments
 (0)