Move files under vs/code/electron-browser/issue

This commit is contained in:
Rachel Macfarlane
2018-01-18 17:11:52 -08:00
parent 69c2797641
commit f31ea9bba3
10 changed files with 8 additions and 6 deletions
@@ -0,0 +1,32 @@
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import * as assert from 'assert';
import { IssueReporterModel } from 'vs/code/electron-browser/issue/issueReporterModel';
suite('IssueReporter', () => {
test('serializes model', () => {
const issueReporterModel = new IssueReporterModel();
assert.equal(issueReporterModel.serialize(),
`
### Issue Type
Feature Request
### Description
undefined
### VS Code Info
VS Code version: undefined
OS version: undefined
<!-- Generated by VS Code Issue Helper -->
`);
});
});