k8s-set-context/__tests__/run.test.ts
2020-06-13 13:39:42 +05:30

7 lines
211 B
TypeScript

import {run} from '../src/login'
describe('This is a placeholder for intial test cases, to be removed', () => {
test('Dummy test case', async () => {
await expect(run()).rejects.toThrow();
})
})