blob: 985d37726b889b63840d9ea0332788500552f11c [file] [log] [blame]
#library('StorageTest');
#import('../../pkg/unittest/unittest.dart');
#import('../../pkg/unittest/html_config.dart');
#import('dart:html');
main() {
useHtmlConfiguration();
test('GetItem', () {
final value = window.localStorage['does not exist'];
Expect.isNull(value);
});
test('SetItem', () {
final key = 'foo';
final value = 'bar';
window.localStorage[key] = value;
final stored = window.localStorage[key];
Expect.equals(value, stored);
});
}