* feat: 🎸 MeasurementService
Work in progress...
* Remove cornerstone tools import
* Second iteration
* CR Update: Add update / added events example
* Add new props to measurements
* Update event log
* Add new measurementid to annotation
* Add context support
* Add value types
* Add area
* Add todo
* Wip measurement to annotation map
* Change points representation
* Add props to annotation mapping
* Add tests
* Extract formatter from init and add tests
* Sketch matchers
* Fix events and valuetypes imports
* Remove context support
* Rename formatter to mappings
* Sketching source and source definitions
* Adjust matching criteria in addOrUpdate
* CR Updates: Extract private functions and rename variables
* Fix broken tests
* Add more measurement service tests
* Update broken mapping tests
* Update test description
* Update getAnnotation to get mapping based on def and source
Co-authored-by: Danny Brown <danny.ri.brown@gmail.com>
18 lines
589 B
JavaScript
18 lines
589 B
JavaScript
// Initiate all tests from root, but allow tests from each package root.
|
|
// Share as much config as possible to reduce duplication.
|
|
//
|
|
// Borrowing from here:
|
|
// https://github.com/facebook/jest/issues/3112#issuecomment-398581705
|
|
const base = require("./jest.config.base.js");
|
|
|
|
module.exports = {
|
|
...base,
|
|
// https://jestjs.io/docs/en/configuration#projects-array-string-projectconfig
|
|
projects: [
|
|
// "<rootDir>/extensions/*/jest.config.js",
|
|
"<rootDir>/platform/*/jest.config.js",
|
|
"<rootDir>/extensions/*/jest.config.js"
|
|
],
|
|
coverageDirectory: "<rootDir>/coverage/"
|
|
};
|