Index: client/tests/client/dom/HistoryTest.dart |
diff --git a/client/tests/client/dom/HistoryTest.dart b/client/tests/client/dom/HistoryTest.dart |
deleted file mode 100644 |
index 7cb61a5b7c66b667f99db0af5e643702ae4f2247..0000000000000000000000000000000000000000 |
--- a/client/tests/client/dom/HistoryTest.dart |
+++ /dev/null |
@@ -1,18 +0,0 @@ |
-#library('HistoryTest'); |
-#import('../../../../lib/unittest/unittest.dart'); |
-#import('../../../../lib/unittest/dom_config.dart'); |
-#import('dart:dom'); |
- |
-main() { |
- useDomConfiguration(); |
- test('History', () { |
- window.history.pushState(null, document.title, '?foo=bar'); |
- expect(window.history.length).equals(2); |
- window.history.back(); |
- expect(window.location.href.endsWith('foo=bar')).isTrue(); |
- |
- window.history.replaceState(null, document.title, '?foo=baz'); |
- Expect.equals(2, window.history.length); |
- expect(window.location.href.endsWith('foo=baz')).isTrue(); |
- }); |
-} |