Skip to content

Commit d224450

Browse files
committed
fix(store): Memory-based storage returns null for non-existing instance
1 parent dbff629 commit d224450

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

src/store.js

+5-2
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ function setupStorage(config, options) {
280280

281281
function memoryStorage(config) {
282282
return {
283-
get: config.enumerable ? () => {} : () => config.create({}),
283+
get: config.enumerable ? () => null : () => config.create({}),
284284
set: config.enumerable
285285
? (id, values) => values
286286
: (id, values) => (values === null ? { id } : values),
@@ -1042,7 +1042,10 @@ function get(Model, id) {
10421042
(result === undefined || typeof result !== "object")
10431043
) {
10441044
throw TypeError(
1045-
`Storage 'get' method must return a Promise, an instance, or null: ${result}`,
1045+
stringifyModel(
1046+
Model,
1047+
`Storage 'get' method must return a Promise, an instance, or null: ${result}`,
1048+
),
10461049
);
10471050
}
10481051

test/spec/store.js

+9
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,15 @@ describe("store:", () => {
156156
expect(spy).toHaveBeenCalledTimes(1);
157157
});
158158

159+
it("returns a model in the error state for non-existing instance of memory based enumerable definition", () => {
160+
Model = { id: true, value: "" };
161+
const model = store.get(Model, "1");
162+
163+
expect(model).toBeInstanceOf(Object);
164+
expect(store.error(model)).toBeInstanceOf(Error);
165+
expect(store.error(model).message.includes("does not exist")).toBe(true);
166+
});
167+
159168
describe("for singleton", () => {
160169
beforeEach(() => {
161170
Model = {

0 commit comments

Comments
 (0)