CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
sagemathinc

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/jupyter/util/misc.test.ts
Views: 687
1
import expect from "expect";
2
import { times_n } from "./misc";
3
4
describe("test times_n", () => {
5
it("does what it is supposed to do", () => {
6
expect(times_n("x", 3)).toBe("xxx");
7
});
8
});
9
10