discourse/test/javascripts/lib/key-value-store-test.js.es6

18 lines
584 B
Plaintext
Raw Normal View History

2015-09-01 13:29:47 -04:00
import KeyValueStore from "discourse/lib/key-value-store";
2017-06-14 13:57:58 -04:00
QUnit.module("lib:key-value-store");
2017-06-14 13:57:58 -04:00
QUnit.test("it's able to get the result back from the store", (assert) => {
2015-09-01 13:29:47 -04:00
const store = new KeyValueStore("_test");
store.set({ key: "bob", value: "uncle" });
2015-09-01 13:29:47 -04:00
assert.equal(store.get("bob"), "uncle");
});
2017-06-14 13:57:58 -04:00
QUnit.test("is able to nuke the store", (assert) => {
2015-09-01 13:29:47 -04:00
const store = new KeyValueStore("_test");
store.set({ key: "bob1", value: "uncle" });
store.abandonLocal();
localStorage.a = 1;
2015-09-01 13:29:47 -04:00
assert.equal(store.get("bob1"), void 0);
assert.equal(localStorage.a, "1");
2017-06-14 13:57:58 -04:00
});