Files
sdk/tests/html/window_eq_test.dart
T
2014-04-09 19:42:11 +00:00

15 lines
310 B
Dart

library WindowEqualityTest;
import 'package:unittest/unittest.dart';
import 'package:unittest/html_config.dart';
import 'dart:html';
main() {
useHtmlConfiguration();
var obfuscated = null;
test('notNull', () {
expect(window, isNotNull);
expect(window, isNot(equals(obfuscated)));
});
}