return early from confirmSave when we are in extension development mode

This commit is contained in:
Benjamin Pasero
2015-11-25 12:51:24 +01:00
parent 2c09792e1c
commit 5ea34f9dba
2 changed files with 5 additions and 4 deletions

View File

@@ -29,6 +29,7 @@ suite('workspace-namespace', () => {
test('openTextDocument', () => {
return workspace.openTextDocument(join(workspace.rootPath, './far.js')).then(doc => {
assert.ok(doc);
assert.equal(workspace.textDocuments.length, 1);
});
});