diff --git a/squarenotsquare/__tests__/Services-test.js b/squarenotsquare/__tests__/Services-test.js new file mode 100644 index 0000000..89d9aa9 --- /dev/null +++ b/squarenotsquare/__tests__/Services-test.js @@ -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(); +}) \ No newline at end of file