We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2a9f2b commit d97ad4cCopy full SHA for d97ad4c
ts/demo-functions/src/kubeval_test.ts
@@ -10,13 +10,15 @@ import {
10
const RUNNER = new TestRunner(kubeval);
11
12
describe('kubeval', () => {
13
- it('handles objects without errors', async () => {
+ // TODO(dflemstr): disabled until we've figured out whether to mock the
14
+ // kubeval invocation or shell out to a sandboxed version.
15
+ xit('handles objects without errors', async () => {
16
await RUNNER.assert(
17
new Configs([Namespace.named('something')]),
18
new Configs([Namespace.named('something')])
19
);
20
});
- it('reacts on errors', async () => {
21
+ xit('reacts on errors', async () => {
22
const deployment = new Deployment({
23
metadata: new ObjectMeta({
24
name: 'something',
0 commit comments