forked from OpenNeo/impress-2020
8 lines
253 B
JavaScript
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();
|
|
});
|
|
});
|