提交 60440c72 编写于 作者: B Benjamin Pasero

reduce test pressure

上级 545fcb99
......@@ -147,7 +147,7 @@ suite('BackupFileService', () => {
});
test('text file (large file, ITextSnapshot)', function (done: () => void) {
const largeString = (new Array(100 * 1024)).join('Large String\n');
const largeString = (new Array(10 * 1024)).join('Large String\n');
const model = TextModel.createFromString(largeString);
service.backupResource(fooFile, model.createSnapshot()).then(() => {
......@@ -160,7 +160,7 @@ suite('BackupFileService', () => {
});
test('untitled file (large file, ITextSnapshot)', function (done: () => void) {
const largeString = (new Array(100 * 1024)).join('Large String\n');
const largeString = (new Array(10 * 1024)).join('Large String\n');
const model = TextModel.createFromString(largeString);
service.backupResource(untitledFile, model.createSnapshot()).then(() => {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册