Skip to content
This repository has been archived by the owner on Sep 6, 2021. It is now read-only.

Commit

Permalink
Shorten timeouts from 15 seconds to 3 seconds
Browse files Browse the repository at this point in the history
  • Loading branch information
RaymondLim committed Oct 13, 2012
1 parent 72f8985 commit 3f855b3
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions test/spec/LiveDevelopment-test.js
Expand Up @@ -309,7 +309,7 @@ define(function (require, exports, module) {
LiveDevelopment.open();
});

waits(5000);
waits(2000);

// Grab the node that we've just modified in Brackets.
var originalNode;
Expand All @@ -329,7 +329,7 @@ define(function (require, exports, module) {
waitsForDone(promise, "Saving modified html document");
});

waits(5000);
waits(1000);

waitsFor(function () {
liveDoc = LiveDevelopment.getLiveDocForPath(testPath + "/simple1.css");
Expand All @@ -350,8 +350,6 @@ define(function (require, exports, module) {
expect(fixSpaces(browserCssText)).toBe(fixSpaces(localCssText));
});

waits(5000);

// Grab the node that we've modified in Brackets.
// This time we should have modified text since the file has been saved in Brackets.
var updatedNode;
Expand Down

0 comments on commit 3f855b3

Please sign in to comment.