Files
documentation/node_modules/feed/src/__tests__/json.spec.ts
2024-03-22 03:47:51 +05:30

9 lines
198 B
TypeScript

import { sampleFeed } from "./setup";
describe("json 1", () => {
it("should generate a valid feed", () => {
const actual = sampleFeed.json1();
expect(actual).toMatchSnapshot();
});
});