UNPKG

feed

Version:

Feed is a RSS, Atom and JSON feed generator for Node.js, making content syndication simple and intuitive!

9 lines (7 loc) 200 B
import { sampleFeed } from "./setup"; describe("atom 1.0", () => { it("should generate a valid feed", () => { const actual = sampleFeed.atom1(); expect(actual).toMatchSnapshot(); }); });