cleanup console logs (changed actual proper logs to .info())
This commit is contained in:
parent
7d88140bb4
commit
c71a36de30
9 changed files with 6 additions and 12 deletions
|
|
@ -10,11 +10,11 @@ const getMockStorage = () => {
|
|||
|
||||
return {
|
||||
getItem: vi.fn(async key => {
|
||||
console.log('get:', key, state[key])
|
||||
console.info('get:', key, state[key])
|
||||
return state[key]
|
||||
}),
|
||||
setItem: vi.fn(async (key, value) => {
|
||||
console.log('set:', key, value)
|
||||
console.info('set:', key, value)
|
||||
state[key] = value
|
||||
}),
|
||||
_clear: () => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue