17 lines
360 B
TypeScript
17 lines
360 B
TypeScript
|
|
import { Cli } from '../../cli/cli';
|
||
|
|
import GitHub from '../../github';
|
||
|
|
describe('Cloud Runner', () => {
|
||
|
|
it('Responds', () => {});
|
||
|
|
beforeAll(() => {
|
||
|
|
GitHub.githubInputEnabled = false;
|
||
|
|
});
|
||
|
|
afterEach(() => {
|
||
|
|
if (Cli.options === undefined) {
|
||
|
|
delete Cli.options;
|
||
|
|
}
|
||
|
|
});
|
||
|
|
afterAll(() => {
|
||
|
|
GitHub.githubInputEnabled = true;
|
||
|
|
});
|
||
|
|
});
|