TextFileEditorModel tests seldom fail in Appveyor (fixes #766)

This commit is contained in:
Benjamin Pasero 2015-12-01 08:52:13 +01:00
parent 0c3e96773c
commit 87b408b33b
2 changed files with 3 additions and 1 deletions

View file

@ -209,6 +209,8 @@ suite('Files - TextFileEditorModel', () => {
});
test("Change after auto save triggered will cause another autosave and twice the events", function(done) {
this.timeout(10000); // TODO@Ben test tends to need longer?
let eventCounter = 0;
let m1 = baseInstantiationService.createInstance(TextFileEditorModel, toResource("/path/index.txt"), "utf8");

View file

@ -57,7 +57,7 @@ suite('FileService', () => {
});
test('createFile', function(done: () => void) {
this.timeout(10000); // test tends to need longer?
this.timeout(10000); // TODO@Ben test tends to need longer?
let contents = 'Hello World';
service.createFile(uri.file(path.join(testDir, 'test.txt')), contents).done(s => {