Spaces:
Sleeping
Sleeping
| import { describe, expect, test } from "vitest"; | |
| import { createJimp } from "@jimp/core"; | |
| import { getTestImagePath } from "@jimp/test-utils"; | |
| import png from "@jimp/js-png"; | |
| import bmp from "./index.js"; | |
| const jimp = createJimp({ formats: [bmp, png] }); | |
| describe("BMP", () => { | |
| test("uses correct colors for BMP", async function () { | |
| const expectedImg = await jimp.read(getTestImagePath("windows95.png")); | |
| const image = await jimp.read(getTestImagePath("windows95.bmp")); | |
| expect(image.bitmap.data).toEqual(expectedImg.bitmap.data); | |
| }); | |
| }); | |