Add required field to kube config picker (#15795)

This commit is contained in:
Charles Gagnon
2021-06-17 19:38:38 -07:00
committed by GitHub
parent efd752aafe
commit 35832e83da
3 changed files with 6 additions and 3 deletions

View File

@@ -18,7 +18,7 @@ const newFileUri = vscode.Uri.file(path.join('path', 'to', 'new', '.kube', 'conf
describe('filePicker', function (): void {
beforeEach(async () => {
const { modelBuilderMock } = createModelViewMock();
filePicker = new FilePicker(modelBuilderMock.object, initialPath, (_disposable) => { }, '', '');
filePicker = new FilePicker(modelBuilderMock.object, initialPath, (_disposable) => { }, '', '', true);
});
afterEach(() => {