blob: 24aecc0b20c1f188a8a0f84ea154cde1f0710575 [file] [log] [blame]
// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// @dart = 2.9
/// @assertion final String responseText
/// The response in String form or empty String on failure.
/// @description Checks that the property is not empty in case of success.
import "dart:html";
import "dart:async";
import "../../../UtilsHtml/expect.dart";
main() {
asyncStart();
Future<HttpRequest> f = HttpRequest.request("test.html");
f.then((HttpRequest r) {
Expect.isTrue(r.responseText.length > 0);
asyncEnd();
}, onError: (Object error) {
Expect.fail("request.onLoad.listen:onError($error)");
});
}