File tree 2 files changed +14
-2
lines changed
2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -280,7 +280,7 @@ function setupStorage(config, options) {
280
280
281
281
function memoryStorage ( config ) {
282
282
return {
283
- get : config . enumerable ? ( ) => { } : ( ) => config . create ( { } ) ,
283
+ get : config . enumerable ? ( ) => null : ( ) => config . create ( { } ) ,
284
284
set : config . enumerable
285
285
? ( id , values ) => values
286
286
: ( id , values ) => ( values === null ? { id } : values ) ,
@@ -1042,7 +1042,10 @@ function get(Model, id) {
1042
1042
( result === undefined || typeof result !== "object" )
1043
1043
) {
1044
1044
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
+ ) ,
1046
1049
) ;
1047
1050
}
1048
1051
Original file line number Diff line number Diff line change @@ -156,6 +156,15 @@ describe("store:", () => {
156
156
expect ( spy ) . toHaveBeenCalledTimes ( 1 ) ;
157
157
} ) ;
158
158
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
+
159
168
describe ( "for singleton" , ( ) => {
160
169
beforeEach ( ( ) => {
161
170
Model = {
You can’t perform that action at this time.
0 commit comments