UNPKG

lorem-ipsum

Version:

Generates passages of lorem ipsum text suitable for use as placeholder copy in web pages, graphics, and more. Works in the browser, NodeJS, and React Native.

11 lines (8 loc) 264 B
import fs from "fs"; import { getVersion } from "."; const pkg = JSON.parse(fs.readFileSync("package.json", "utf8")); describe("getVersion", () => { test("Returns the version from package.json", () => { expect(getVersion()).toEqual(pkg.version); }); });