1
0
Fork 0
mirror of https://github.com/datashard/snapshot.git synced 2025-05-05 16:07:22 +00:00
snapshot/src/snapshot-spec.js

13 lines
280 B
JavaScript

const api = require(".");
const la = require("lazy-ass");
const is = require("check-more-types");
describe("@datashard/snapshot", () => {
it("is an object", () => {
la(is.object(api));
});
it("has register", () => {
la(is.fn(api.register));
});
});