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

Commit

Permalink
Merge pull request #5394 from adobe/randy/livedev-socket-test
Browse files Browse the repository at this point in the history
Add missing timeout messages
  • Loading branch information
ingorichter committed Oct 2, 2013
2 parents d40c64b + 48202fd commit b83eeee
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/spec/LiveDevelopment-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ define(function (require, exports, module) {
tryConnect();
});

waitsFor(function () { return connected || failed; }, 10000);
waitsFor(function () { return connected || failed; }, "LiveDevelopmentModule.launcherUrl", 10000);

runs(function () {
expect(failed).toBe(false);
Expand All @@ -216,7 +216,7 @@ define(function (require, exports, module) {
waitsForDone(promise, "Inspector.Runtime.evaluate", 5000);
});

waitsFor(function () { return !InspectorModule.connected(); }, 10000);
waitsFor(function () { return !InspectorModule.connected(); }, "!InspectorModule.connected()", 10000);
});
});

Expand Down Expand Up @@ -378,7 +378,7 @@ define(function (require, exports, module) {
});
});

waitsFor(function () { return (fileContent !== null); }, 1000);
waitsFor(function () { return (fileContent !== null); }, "Load fileContent", 1000);
}
}

Expand Down

0 comments on commit b83eeee

Please sign in to comment.