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