-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathmutableMapping.test.ts
38 lines (31 loc) · 1.12 KB
/
mutableMapping.test.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import { createProxy, MutableMapping } from "../src/mutableMapping";
describe("Store Proxy", () => {
const mockStore: MutableMapping<any> = {
getItem: jest.fn(),
setItem: jest.fn(),
deleteItem: jest.fn(),
containsItem: jest.fn(),
proxy: jest.fn(),
};
const proxyStore = createProxy(mockStore);
it("catches set", () => {
(mockStore.setItem as jest.Mock).mockReturnValue(true);
proxyStore["a"] = 3;
expect(mockStore.setItem).toHaveBeenCalledWith("a", 3);
});
it("catches get", () => {
(mockStore.getItem as jest.Mock).mockReturnValue(true);
proxyStore["a"];
expect(mockStore.getItem).toHaveBeenCalledWith("a");
});
it("catches delete", () => {
(mockStore.deleteItem as jest.Mock).mockReturnValue(true);
delete proxyStore["a"];
expect(mockStore.deleteItem).toHaveBeenCalledWith("a");
});
it("catches contains", () => {
(mockStore.containsItem as jest.Mock).mockReturnValue(true);
"a" in proxyStore;
expect(mockStore.containsItem).toHaveBeenCalledWith("a");
});
});