OLD | NEW |
1 #library('fileapi'); | 1 #library('fileapi'); |
2 #import('../../lib/unittest/unittest.dart'); | 2 #import('../../pkg/unittest/unittest.dart'); |
3 #import('../../lib/unittest/html_config.dart'); | 3 #import('../../pkg/unittest/html_config.dart'); |
4 #import('dart:html'); | 4 #import('dart:html'); |
5 | 5 |
6 main() { | 6 main() { |
7 useHtmlConfiguration(); | 7 useHtmlConfiguration(); |
8 window.webkitRequestFileSystem(Window.TEMPORARY, 100, (fs) { | 8 window.webkitRequestFileSystem(Window.TEMPORARY, 100, (fs) { |
9 // FIXME: add types to callback arguments after migration to wrapperless dar
t:html. | 9 // FIXME: add types to callback arguments after migration to wrapperless dar
t:html. |
10 | 10 |
11 test('getDirectory', () { | 11 test('getDirectory', () { |
12 expect(() => fs.root.getDirectory('directory1', {'x': true}, (e) {}), | 12 expect(() => fs.root.getDirectory('directory1', {'x': true}, (e) {}), |
13 throws); | 13 throws); |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 flags: {'create': true}, | 51 flags: {'create': true}, |
52 successCallback: expectAsync1((e) { | 52 successCallback: expectAsync1((e) { |
53 expect(e.name, equals('file3')); | 53 expect(e.name, equals('file3')); |
54 }), | 54 }), |
55 errorCallback: expectAsync1((e) { | 55 errorCallback: expectAsync1((e) { |
56 expect(false, 'Got file error: ${e.code}'); | 56 expect(false, 'Got file error: ${e.code}'); |
57 }, count:0)); | 57 }, count:0)); |
58 }); | 58 }); |
59 }); | 59 }); |
60 } | 60 } |
OLD | NEW |