| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | |
| 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. | |
| 4 | |
| 5 library media_stream_test; | |
| 6 import '../../pkg/unittest/lib/unittest.dart'; | |
| 7 import '../../pkg/unittest/lib/html_individual_config.dart'; | |
| 8 import 'dart:html'; | |
| 9 | |
| 10 main() { | |
| 11 useHtmlIndividualConfiguration(); | |
| 12 | |
| 13 group('supported', () { | |
| 14 test('supported', () { | |
| 15 expect(MediaStream.supported, true); | |
| 16 }); | |
| 17 }); | |
| 18 | |
| 19 // No additional tests right now since this API prompts for user input to | |
| 20 // continue. | |
| 21 } | |
| OLD | NEW |