We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf759a6 commit 29dadb0Copy full SHA for 29dadb0
.github/workflows/publish.yml
@@ -34,7 +34,7 @@ jobs:
34
run: npm run build-package
35
36
- name: Test library
37
- run: npm test -- --watch=false --browsers=ChromeHeadless
+ run: npm test -- --watch=false --browsers=ChromeHeadless --no-fail-on-empty-test-suite
38
39
- name: Publish to npm
40
run: |
projects/ngx-angular-query-builder/karma.conf.js
@@ -36,6 +36,7 @@ module.exports = function (config) {
autoWatch: true,
browsers: ["Chrome"],
singleRun: false,
- restartOnFileChange: true
+ restartOnFileChange: true,
+ failOnEmptyTestSuite: false
41
});
42
};
0 commit comments