unity-builder/src/model/cloud-runner/tests/cloud-runner-suite.test.ts

17 lines
360 B
TypeScript
Raw Normal View History

2022-09-17 04:09:36 +00:00
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;
});
});