impress-2020/src/server/getValidPetPoses.test.js
2020-05-03 01:04:34 -07:00

8 lines
253 B
JavaScript

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