voluptasquisquam
Version:
Image processing and manipulation in JavaScript
14 lines (10 loc) • 341 B
JavaScript
import Image from '../..';
import 'should';
const Static = Image.Static;
describe('Image core - Algorithms', function () {
it('check grey names', function () {
Static.grey.indexOf('hue').should.equal(13);
Static.mask.indexOf('li').should.equal(4);
Static.mask.indexOf('threshold').should.equal(0);
});
});