ebt-vue3
Version:
Vue3 Library for SuttaCentral Voice EBT-Sites
13 lines (11 loc) • 348 B
JavaScript
(typeof describe === 'function') && describe("repo-info", function () {
const should = require("should");
const RepoInfo = require("../src/repo-info.cjs");
it("info => repository info", async () => {
let info = await RepoInfo.info();
should.deepEqual(info, {
account: 'sc-voice',
repository: 'ebt-vue3',
});
});
})