OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 import 'package:unittest/unittest.dart'; | |
6 import 'package:unittest/html_config.dart'; | |
7 import 'dart:html'; | 5 import 'dart:html'; |
8 | 6 |
| 7 import 'package:expect/minitest.dart'; |
| 8 |
9 main() { | 9 main() { |
10 useHtmlConfiguration(); | |
11 | |
12 test('Uri.base', () { | 10 test('Uri.base', () { |
13 expect(Uri.base.scheme, "http"); | 11 expect(Uri.base.scheme, "http"); |
14 expect(Uri.base.toString(), window.location.href); | 12 expect(Uri.base.toString(), window.location.href); |
15 }); | 13 }); |
16 } | 14 } |
OLD | NEW |