Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(982)

Unified Diff: tests/html/xhr_test.dart

Issue 13450008: Disabled the xhr blob test completely, to make it invisible for test.py (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/html/xhr_test.dart
diff --git a/tests/html/xhr_test.dart b/tests/html/xhr_test.dart
index 856068f39107b181874995b1da2b0bb83172f1a1..85d8cc3b0568146bbf2c42b2a1a47c1be2ace3dd 100644
--- a/tests/html/xhr_test.dart
+++ b/tests/html/xhr_test.dart
@@ -167,18 +167,19 @@ main() {
});
// TODO(antonm): enable again.
- if (false)
- group('xhr_requestBlob', () {
- test('XHR.request responseType blob', () {
- if (ArrayBuffer.supported) {
- return HttpRequest.request(url, responseType: 'blob').then(
- (xhr) {
- expect(xhr.status, equals(200));
- var blob = xhr.response;
- expect(blob is Blob, isTrue);
- expect(blob, isNotNull);
- });
- }
- });
- });
+ /*
+ *groupXX('xhr_requestBlob', () {
+ * testXX('XHR.request responseType blob', () {
+ * if (ArrayBuffer.supported) {
+ * return HttpRequest.request(url, responseType: 'blob').then(
+ * (xhr) {
+ * expect(xhr.status, equals(200));
+ * var blob = xhr.response;
+ * expect(blob is Blob, isTrue);
+ * expect(blob, isNotNull);
+ * });
+ * }
+ * });
+ *});
+ */
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698