blob: cfd9cb7d11e9d72aa2c5ef7270a69c745e9c46fd [file] [log] [blame]
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)));
});
}