blob: 718011ce4a7667441d4ffd8dbf63c15b5e53c857 [file] [log] [blame]
library WindowEqualityTest;
import '../../pkg/unittest/lib/unittest.dart';
import '../../pkg/unittest/lib/html_config.dart';
import 'dart:html';
main() {
useHtmlConfiguration();
var obfuscated = null;
test('notNull', () {
expect(window, isNotNull);
expect(window, isNot(equals(obfuscated)));
});
}