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 e9a78d7 commit 029acdaCopy full SHA for 029acda
packages/k8s/tests/k8s-utils-test.ts
@@ -382,10 +382,10 @@ describe('k8s utils', () => {
382
describe('getEntryPointAndArgs', () => {
383
it('should return correct entrypoint and argument', () => {
384
expect(getEntryPointAndArgs(`--blah`)).toEqual([])
385
- expect(getEntryPointAndArgs(`--entrypoint=["/foo"]`)).toEqual(['/foo'])
+ expect(getEntryPointAndArgs(`--entrypoint=["/foo"]`)).toEqual(['"/foo"'])
386
expect(
387
getEntryPointAndArgs(`--entrypoint=["/foo", "--a", "--b"]`)
388
- ).toEqual(['/foo', '--a', '--b'])
+ ).toEqual(['"/foo"', '--a', '--b'])
389
})
390
391
0 commit comments