UNPKG

@cornerstonejs/dicom-image-loader

Version:

Cornerstone Image Loader for DICOM WADO-URI and WADO-RS and Local file

10 lines (9 loc) 321 B
import { expect } from 'chai'; import getMinMax from './getMinMax'; describe('#getMinMax', () => { it('should return the right min and max values', () => { const result = getMinMax([7, 3, 9, 6, 8, 1, 4, 5, 2]); expect(result.min).to.be.equal(1); expect(result.max).to.be.equal(9); }); });