1import expect from "expect"; 2import { times_n } from "./misc"; 3 4describe("test times_n", () => { 5 it("does what it is supposed to do", () => { 6 expect(times_n("x", 3)).toBe("xxx"); 7 }); 8}); 9 10