13 lines
389 B
TypeScript
13 lines
389 B
TypeScript
import { GithubCliReader } from './github-cli';
|
|
import * as core from '@actions/core';
|
|
|
|
describe(`github cli`, () => {
|
|
// Todo - We can not assume that everyone has the GitHub cli installed locally.
|
|
it.skip(`returns`, async () => {
|
|
const token = await GithubCliReader.GetGitHubAuthToken();
|
|
|
|
// Todo - use expect(result).toStrictEqual(something)
|
|
core.info(token);
|
|
});
|
|
});
|