[ACS-5107] - improve gha after introducing nx workspace (#3420)

* [ACS-5107] - Fix failing unit test on CI

* [ACS-5107] - Fix failing unit test on CI

* [ACS-5107] - Fix failing unit test on CI

* [ACS-5107] - Fix failing unit test on CI
This commit is contained in:
DominikIwanek
2023-09-05 07:01:41 -04:00
committed by GitHub
parent deba28c8e0
commit 4a8faeaa8e
4 changed files with 58 additions and 70 deletions
+11
View File
@@ -0,0 +1,11 @@
// Karma configuration file, see link for more information
// https://karma-runner.github.io/1.0/config/configuration-file.html
const getBaseKarmaConfig = require('../karma.conf');
module.exports = function (config) {
const baseConfig = getBaseKarmaConfig();
config.set({
...baseConfig,
coverageReporter: {},
});
};