kubernetes/test/test.ts

11 lines
195 B
TypeScript
Raw Normal View History

2020-01-15 14:08:06 +00:00
import { expect, tap } from '@pushrocks/tapbundle';
import * as kubernetes from '../ts/index';
2020-01-18 18:47:46 +00:00
let testClient = kubernetes.KubeClient;
2020-01-15 14:08:06 +00:00
tap.test('first test', async () => {
2020-01-18 18:47:46 +00:00
2020-01-15 14:08:06 +00:00
});
tap.start();