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/assets/index.test.js
Views: 687
1
const index = require(".");
2
3
test("index has a path ending in assets", () => {
4
expect(index.path).toMatch(/assets$/);
5
});
6
7