UNPKG

@characters/multiplication-sign

Version:
11 lines (8 loc) 243 B
import char from "./"; const expected = "×"; test("Expected imported character to match hard-coded character", () => { expect(char).toBe(expected); }); test("Character should have length of 1", () => { expect(char).toHaveLength(1); });