Merge VS Code 1.31.1 (#4283)

This commit is contained in:
Matt Irvine
2019-03-15 13:09:45 -07:00
committed by GitHub
parent 7d31575149
commit 86bac90001
1716 changed files with 53308 additions and 48375 deletions

View File

@@ -13,28 +13,30 @@ suite('IssueReporter', () => {
test('sets defaults to include all data', () => {
const issueReporterModel = new IssueReporterModel();
assert.deepEqual(issueReporterModel.getData(), {
allExtensions: [],
includeSystemInfo: true,
includeWorkspaceInfo: true,
includeProcessInfo: true,
includeExtensions: true,
includeSearchedExtensions: true,
includeSettingsSearchDetails: true
includeSettingsSearchDetails: true,
issueType: 0
});
});
// {{SQL CARBON EDIT}}
test('serializes model skeleton when no data is provided', () => {
const issueReporterModel = new IssueReporterModel();
const issueReporterModel = new IssueReporterModel({});
assert.equal(issueReporterModel.serialize(),
`
Issue Type: <b>Feature Request</b>
Issue Type: <b>Bug</b>
undefined
Azure Data Studio version: undefined
OS version: undefined
Extensions: none
<!-- generated by issue reporter -->`);
});