setup-kubectl/__tests__/run.test.ts

7 lines
209 B
TypeScript
Raw Normal View History

2020-06-13 12:30:23 +05:30
import {run} from '../src/run'
describe('This is a placeholder for intial test cases, to be removed', () => {
test('Dummy test case', async () => {
await expect(run()).rejects.toThrow();
})
})