chore: add comments about all the tests that need to be added

This commit is contained in:
thecodrr
2019-12-04 18:33:01 +05:00
parent fd7b50b5c8
commit 9ec5772cbe
3 changed files with 7 additions and 4 deletions

View File

@@ -12,10 +12,10 @@ class Storage {
return Convert.fromString(data);
}
clear() {
this.storage.clear();
this.storage.clear(); //TODO add test
}
remove(key) {
this.storage.remove(key);
this.storage.remove(key); //TODO add test
}
}