mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-08 19:34:56 +02:00
9 lines
198 B
TypeScript
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();
|
|
});
|
|
});
|