impress-2020/src/server/getValidPetPoses.test.js

9 lines
253 B
JavaScript
Raw Normal View History

import getValidPetPoses from "./getValidPetPoses";
describe("getValidPetPoses", () => {
it("gets them and writes them to a buffer", async () => {
const buffer = await getValidPetPoses();
expect(buffer.toString()).toMatchSnapshot();
});
});