Skip to content

Commit

Permalink
reduce test pressure
Browse files Browse the repository at this point in the history
  • Loading branch information
bpasero committed Jan 23, 2018
1 parent 545fcb9 commit 60440c7
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -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(() => {
Expand All @@ -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(() => {
Expand Down

0 comments on commit 60440c7

Please sign in to comment.