Skip to content

Commit

Permalink
fix formatting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
robb-j committed Jul 16, 2021
1 parent 8c70a4f commit 82de081
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions test/settingsHandlers.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -161,19 +161,15 @@ describe('Settings Handlers Tests', () => {

await settingsHandler.pullConfiguration();

expect(workspaceStub.getConfiguration).calledOnceWith([
{ section: 'yaml' },
{ section: 'http' },
{ section: '[yaml]' },
]);
expect(workspaceStub.getConfiguration).calledOnceWith([{ section: 'yaml' }, { section: 'http' }, { section: '[yaml]' }]);

expect(setConfigurationStub).calledOnceWith({
yaml: {},
http: {
proxy: '',
proxyStrictSSL: false,
},
yamlEditor: {}
yamlEditor: {},
});
});
});
Expand Down

0 comments on commit 82de081

Please sign in to comment.