Browse Source

mock store changes

pull/1/head
Tim Glasgow 2 years ago
parent
commit
6dbcb7640e
  1. 6
      squarenotsquare/__mock__/mockKeyStore.js

6
squarenotsquare/__mock__/mockKeyStore.js

@ -7,5 +7,11 @@ export async function setKey(key, value) {
}
export async function getKey(key) {
if (key === 'isNull'){
return null;
} else if (key === 'negTest') {
return '-1';
} else {
return '1234567890';
}
}

Loading…
Cancel
Save