import React from "react"; import { ReactScreenshotTest } from "../lib"; import { VIEWPORTS } from "./viewports"; describe("screenshots", () => { ReactScreenshotTest.create("Unicode") .viewports(VIEWPORTS) .shoot("French",
Bonjour Sébastien, comment ça va ?
) .shoot("Chinese",
你好!
) .shoot("Japanese",
こんにちは
) // Disabled as Docker currently doesn't have the right font. // .shoot("Emoji",
😃
) .run(); });