提交 8853b2db 编写于 作者: K kieferrm

Ajust test to new defaults. See #26893.

上级 5b09beb1
......@@ -89,13 +89,23 @@ suite('Common Editor Config', () => {
let config = new TestWrappingConfiguration({
wordWrap: <any>true
});
assertWrapping(config, true, 89);
assertWrapping(config, true, 81);
});
test('wordWrap on', () => {
let config = new TestWrappingConfiguration({
wordWrap: 'on'
});
assertWrapping(config, true, 81);
});
test('wordWrap on without minimap', () => {
let config = new TestWrappingConfiguration({
wordWrap: 'on',
minimap: {
enabled: false
}
});
assertWrapping(config, true, 89);
});
......@@ -104,7 +114,7 @@ suite('Common Editor Config', () => {
wordWrap: 'on',
wordWrapColumn: 10
});
assertWrapping(config, true, 89);
assertWrapping(config, true, 81);
});
test('wordWrap off', () => {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册