mirror of
https://github.com/GoogleChromeLabs/squoosh.git
synced 2025-11-12 08:47:31 +00:00
10 lines
230 B
TypeScript
10 lines
230 B
TypeScript
import {bitmapToImageData} from "../../src/lib/util";
|
|
|
|
const expect = chai.expect;
|
|
|
|
describe("util.bitmapToImageData", function () {
|
|
it("is a function", function () {
|
|
expect(bitmapToImageData).to.be.a('function');
|
|
});
|
|
});
|