2
0
Fork 0
mirror of https://code.forgejo.org/docker/metadata-action.git synced 2025-08-02 15:58:31 +00:00

chore: cleanup tests

Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
CrazyMax 2021-12-06 15:42:26 +01:00
parent a2e02890a0
commit 9a42503205
No known key found for this signature in database
GPG key ID: 3248E46B6BB8C7F7
5 changed files with 0 additions and 25 deletions

View file

@ -8,7 +8,6 @@ jest.spyOn(github, 'repo').mockImplementation((): Promise<github.ReposGetRespons
describe('repo', () => {
it('returns GitHub repository', async () => {
const repo = await github.repo(process.env.GITHUB_TOKEN || '');
console.log(repo);
expect(repo.name).not.toBeNull();
});
});