k8s-set-context/__tests__/run.test.ts
2020-06-16 10:23:23 +05:30

7 lines
213 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();
})
})