| 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 'dart:async'; | 7 import 'dart:async'; |
| 8 import 'dart:io'; | |
| 9 | 8 |
| 10 import 'package:shelf/shelf.dart' as shelf; | 9 import 'package:shelf/shelf.dart' as shelf; |
| 11 import 'package:shelf/shelf_io.dart' as shelf_io; | 10 import 'package:shelf/shelf_io.dart' as shelf_io; |
| 12 import 'package:shelf_web_socket/shelf_web_socket.dart'; | 11 import 'package:shelf_web_socket/shelf_web_socket.dart'; |
| 13 import 'package:test/src/runner/browser/content_shell.dart'; | 12 import 'package:test/src/runner/browser/content_shell.dart'; |
| 14 import 'package:test/src/util/io.dart'; | 13 import 'package:test/src/util/io.dart'; |
| 15 import 'package:test/src/utils.dart'; | 14 import 'package:test/src/utils.dart'; |
| 16 import 'package:test/test.dart'; | 15 import 'package:test/test.dart'; |
| 17 | 16 |
| 18 import '../../utils.dart'; | 17 import '../../utils.dart'; |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 }); | 139 }); |
| 141 }); | 140 }); |
| 142 | 141 |
| 143 test("reports an error in onExit", () { | 142 test("reports an error in onExit", () { |
| 144 var contentShell = new ContentShell("http://dart-lang.org", | 143 var contentShell = new ContentShell("http://dart-lang.org", |
| 145 executable: "_does_not_exist"); | 144 executable: "_does_not_exist"); |
| 146 expect(contentShell.onExit, throwsA(isApplicationException(startsWith( | 145 expect(contentShell.onExit, throwsA(isApplicationException(startsWith( |
| 147 "Failed to start content shell: No such file or directory")))); | 146 "Failed to start content shell: No such file or directory")))); |
| 148 }); | 147 }); |
| 149 } | 148 } |
| OLD | NEW |