1
0
Fork 0
forked from OpenNeo/impress
impress/src/server/outfit-images.test.js

11 lines
331 B
JavaScript

const { renderOutfitImage } = require("./outfit-images");
const { toMatchImageSnapshot } = require("jest-image-snapshot");
expect.extend({ toMatchImageSnapshot });
describe("renderOutfitImage", () => {
it("renders a test xwee", () => {
const image = renderOutfitImage();
expect(image).toMatchImageSnapshot();
});
});