提交 e2bdb326 编写于 作者: S Sandeep Somavarapu

Fix tests

上级 5a622a99
...@@ -274,14 +274,14 @@ suite('ExtHostConfiguration', function () { ...@@ -274,14 +274,14 @@ suite('ExtHostConfiguration', function () {
assert.equal(actual2.defaultValue, 'off'); assert.equal(actual2.defaultValue, 'off');
assert.equal(actual2.globalValue, 'on'); assert.equal(actual2.globalValue, 'on');
assert.equal(actual2.workspaceValue, 'bounded'); assert.equal(actual2.workspaceValue, 'bounded');
assert.ok(Object.keys(actual2).indexOf('folderValue') !== -1); assert.ok(Object.keys(actual2).indexOf('workspaceFolderValue') !== -1);
assert.equal(actual2.workspaceFolderValue, undefined); assert.equal(actual2.workspaceFolderValue, undefined);
actual2 = testObject.getConfiguration('editor', thirdRoot).inspect('wordWrap'); actual2 = testObject.getConfiguration('editor', thirdRoot).inspect('wordWrap');
assert.equal(actual2.defaultValue, 'off'); assert.equal(actual2.defaultValue, 'off');
assert.equal(actual2.globalValue, 'on'); assert.equal(actual2.globalValue, 'on');
assert.equal(actual2.workspaceValue, 'bounded'); assert.equal(actual2.workspaceValue, 'bounded');
assert.ok(Object.keys(actual2).indexOf('folderValue') !== -1); assert.ok(Object.keys(actual2).indexOf('workspaceFolderValue') !== -1);
assert.equal(actual2.workspaceFolderValue, undefined); assert.equal(actual2.workspaceFolderValue, undefined);
}); });
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册