Skip to content

Commit

Permalink
test: import takes json values
Browse files Browse the repository at this point in the history
  • Loading branch information
dan-online committed May 17, 2024
1 parent 323d322 commit 00c5d0a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/index.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -581,7 +581,7 @@ describe('Enmap', () => {
name: 'MemoryEnmap',
exportDate: Date.now(),
version: '1.0.0',
keys: [{ key: 'import', value: stringify({ hello: 'world' }) }],
keys: [{ key: 'import', value: { hello: 'world' } }],
}),
);

Expand All @@ -595,7 +595,7 @@ describe('Enmap', () => {
name: 'MemoryEnmap',
exportDate: Date.now(),
version: '1.0.0',
keys: [{ key: 'import', value: stringify({ hello: 'world' }) }],
keys: [{ key: 'import', value: { hello: 'world' } }],
}),
false,
);
Expand All @@ -611,7 +611,7 @@ describe('Enmap', () => {
name: 'MemoryEnmap',
exportDate: Date.now(),
version: '1.0.0',
keys: [{ key: 'import', value: stringify({ hello: 'world' }) }],
keys: [{ key: 'import', value: { hello: 'world' } }],
}),
false,
true,
Expand Down

0 comments on commit 00c5d0a

Please sign in to comment.