test(unit): add electron-store mock

This commit is contained in:
George Lima 2019-04-02 14:59:49 -03:00
parent 592203e104
commit cca1440c4b
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
/* eslint-disable */
module.exports = class {
constructor({ encryptionKey }) {
this.encryptionKey = encryptionKey;
}
get() {
return 'test value';
}
};