Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/jupyter/util/misc.test.ts
1447 views
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