Skip to content

Commit

Permalink
Merge pull request #736 from folio-org/UICIRC-657
Browse files Browse the repository at this point in the history
UICIRC-657: Fix failed build on ui-circulation
  • Loading branch information
Dmitriy-Litvinenko authored Jun 14, 2021
2 parents 8432f9b + 83a650e commit b007d42
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 15 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
* Larger query limits for circulation-rules related queries. Fixes UICIRC-568.
* Also support `inventory` `11.0`. Refs UICIRC-578.
* Checked out an item with due date/time in the past. Refs UICIRC-565.
* Fix failed build on ui-circulation. Fixes UICIRC-657.

## 5.0.1 (https://github.com/folio-org/ui-circulation/tree/v5.0.1) (2021-04-21)
[Full Changelog](https://github.com/folio-org/ui-circulation/compare/v5.0.0...v5.0.1)
Expand Down
21 changes: 6 additions & 15 deletions karma.conf.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,6 @@
module.exports = (config) => {
const testIndex = './test/bigtest/index.js';
const preprocessors = {};
preprocessors[`${testIndex}`] = ['webpack'];

const configuration = {
files: [
{ pattern: testIndex, watched: true },
],
preprocessors,
client: { captureConsole: false },
};

config.set(configuration);
};
/** @param {import('karma').Config} config */
module.exports = config => config.set({
client: {
captureConsole: false,
},
});

0 comments on commit b007d42

Please sign in to comment.