Browse Source

add mock keystore

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

11
squarenotsquare/__mock__/mockKeyStore.js

@ -0,0 +1,11 @@
export async function removeKey(key) {
return true;
}
export async function setKey(key, value) {
return true;
}
export async function getKey(key) {
return '1234567890';
}
Loading…
Cancel
Save