UNPKG

cdk8s-cli

Version:

This is the command line tool for Cloud Development Kit (CDK) for Kubernetes (cdk8s).

12 lines (10 loc) 291 B
import {MyChart} from './main'; import {Testing} from 'cdk8s'; describe('Placeholder', () => { test('Empty', () => { const app = Testing.app(); const chart = new MyChart(app, 'test-chart'); const results = Testing.synth(chart) expect(results).toMatchSnapshot(); }); });