| // @dart = 2.9 | |
| library HistoryTest; | |
| import 'package:async_helper/async_minitest.dart'; | |
| import 'dart:html'; | |
| import 'dart:async'; | |
| main() { | |
| test('supports_state', () { | |
| expect(History.supportsState, true); | |
| }); | |
| test('supported_HashChangeEvent', () { | |
| expect(HashChangeEvent.supported, true); | |
| }); | |
| } |