blob: c16263cc81028fb777c165bbced4ea038855a9e9 [file] [log] [blame]
library HistoryTest;
import 'package:unittest/unittest.dart';
import 'package:unittest/html_individual_config.dart';
import 'dart:html';
import 'dart:async';
main() {
useHtmlIndividualConfiguration();
test('supported', () {
expect(HashChangeEvent.supported, true);
});
}