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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
581 B
JavaScript
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
});