| Index: sky/tests/framework/xmlhttprequest/empty-responseType.sky
|
| diff --git a/sky/tests/framework/xmlhttprequest/empty-responseType.sky b/sky/tests/framework/xmlhttprequest/empty-responseType.sky
|
| index f97e25433640389fef82e110fa6192bdb7ad1f1b..19a132b55124b65e9673012491119b06bbfd8278 100644
|
| --- a/sky/tests/framework/xmlhttprequest/empty-responseType.sky
|
| +++ b/sky/tests/framework/xmlhttprequest/empty-responseType.sky
|
| @@ -4,7 +4,9 @@
|
| <import src="/sky/framework/xmlhttprequest.sky" as="XMLHttpRequest" />
|
| <script>
|
| describe("xmlhttprequest.responseType", function() {
|
| - it("should default to text when empty", function(done) {
|
| + this.enableTimeouts(false);
|
| +
|
| + it("should default to text when empty", function() {
|
| var xhr = new XMLHttpRequest();
|
| assert.equal(xhr.responseType, "");
|
| xhr.responseType = 'foo';
|
|
|