1 changed files with 13 additions and 0 deletions
@ -0,0 +1,13 @@ |
|||
import { removeKey, setKey, getKey } from "../src/services/Keystore"; |
|||
|
|||
test('calls set keystore key', () => { |
|||
expect(setKey.bind('100', '100')).not.toThrow(); |
|||
}) |
|||
|
|||
test('calls get keystore key', () => { |
|||
expect(getKey.bind('100')).not.toThrow(); |
|||
}) |
|||
|
|||
test('calls remove keystore key', () => { |
|||
expect(removeKey.bind('100')).not.toThrow(); |
|||
}) |
Loading…
Reference in new issue