mirror of
https://github.com/amalgamated-tools/mirror-to-gitea.git
synced 2025-12-23 22:18:05 -05:00
15 lines
338 B
JavaScript
15 lines
338 B
JavaScript
import { Octokit } from "@octokit/rest";
|
|
import { default as get } from "./get-github-repositories";
|
|
|
|
describe("get-github-repositories", () => {
|
|
xit("fetches public repositories", async () => {
|
|
const octokit = new Octokit({
|
|
auth: null,
|
|
});
|
|
|
|
const result = await get(octokit, undefined);
|
|
|
|
expect(result).toEqual([]);
|
|
});
|
|
});
|