setup-kubectl/__tests__/run.test.ts
rgsubh 24a3a128bc
Setup for L0 Testcases (#6)
* SetUp for L0 TestCases

* Issue Fix

* Issue Fix

* Issue Fix

* Issue Fix

* Issue Fix

* Issue Fix

* Review comments fix: run npm install only with our build, npm install only dev for releases

* Running code covrage only on PR of master and releases
2020-07-01 09:07:14 +05:30

7 lines
No EOL
211 B
TypeScript

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