| OLD | NEW |
| 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 @TestOn("vm") | 5 @TestOn("vm") |
| 6 | 6 |
| 7 import 'package:scheduled_test/descriptor.dart' as d; | 7 import 'package:scheduled_test/descriptor.dart' as d; |
| 8 import 'package:scheduled_test/scheduled_stream.dart'; | 8 import 'package:scheduled_test/scheduled_stream.dart'; |
| 9 import 'package:scheduled_test/scheduled_test.dart'; | 9 import 'package:scheduled_test/scheduled_test.dart'; |
| 10 import 'package:test/src/runner/browser/firefox.dart'; | 10 import 'package:test/src/runner/browser/firefox.dart'; |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 server.handleJavaScript(''' | 27 server.handleJavaScript(''' |
| 28 var webSocket = new WebSocket(window.location.href.replace("http://", "ws://")); | 28 var webSocket = new WebSocket(window.location.href.replace("http://", "ws://")); |
| 29 webSocket.addEventListener("open", function() { | 29 webSocket.addEventListener("open", function() { |
| 30 webSocket.send("loaded!"); | 30 webSocket.send("loaded!"); |
| 31 }); | 31 }); |
| 32 '''); | 32 '''); |
| 33 | 33 |
| 34 var webSocket = server.handleWebSocket(); | 34 var webSocket = server.handleWebSocket(); |
| 35 | 35 |
| 36 schedule(() async { | 36 schedule(() async { |
| 37 expect(await (await webSocket).first, equals("loaded!")); | 37 expect(await (await webSocket).stream.first, equals("loaded!")); |
| 38 }); | 38 }); |
| 39 }); | 39 }); |
| 40 | 40 |
| 41 test("a process can be killed synchronously after it's started", () async { | 41 test("a process can be killed synchronously after it's started", () async { |
| 42 var server = new CodeServer(); | 42 var server = new CodeServer(); |
| 43 | 43 |
| 44 schedule(() async { | 44 schedule(() async { |
| 45 var firefox = new Firefox(await server.url); | 45 var firefox = new Firefox(await server.url); |
| 46 await firefox.close(); | 46 await firefox.close(); |
| 47 }); | 47 }); |
| (...skipping 27 matching lines...) Expand all Loading... |
| 75 void main() { | 75 void main() { |
| 76 test("failure", () => throw new TestFailure("oh no")); | 76 test("failure", () => throw new TestFailure("oh no")); |
| 77 } | 77 } |
| 78 """).create(); | 78 """).create(); |
| 79 | 79 |
| 80 var test = runTest(["-p", "firefox", "test.dart"]); | 80 var test = runTest(["-p", "firefox", "test.dart"]); |
| 81 test.stdout.expect(consumeThrough(contains("-1: Some tests failed."))); | 81 test.stdout.expect(consumeThrough(contains("-1: Some tests failed."))); |
| 82 test.shouldExit(1); | 82 test.shouldExit(1); |
| 83 }); | 83 }); |
| 84 } | 84 } |
| OLD | NEW |