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.

15 lines (12 loc) 484 B
import { isSupportedPlatform } from "."; import { SUPPORTED_PLATFORMS } from "../../constants/platforms"; describe("isSupportedPlatform", () => { test("Should return true if the platform is supported", () => { Object.values(SUPPORTED_PLATFORMS).forEach((platform) => { expect(isSupportedPlatform(platform)).toEqual(true); }); }); test("Should return false if the platform is unsupported", () => { expect(isSupportedPlatform("os2")).toEqual(false); }); });