diff --git a/keyserver/src/utils/olm-utils.test.js b/keyserver/src/utils/olm-utils.test.js new file mode 100644 --- /dev/null +++ b/keyserver/src/utils/olm-utils.test.js @@ -0,0 +1,13 @@ +// @flow + +import olm from '@matrix-org/olm'; + +import { getOlmUtility } from '../utils/olm-utils.js'; + +describe('olm.Account', () => { + it('should get Olm Utility', async () => { + await olm.init(); + const utility = getOlmUtility(); + expect(utility).not.toBe(undefined); + }); +}); diff --git a/web/olm/olm.test.js b/web/olm/olm.test.js new file mode 100644 --- /dev/null +++ b/web/olm/olm.test.js @@ -0,0 +1,11 @@ +// @flow + +import olm from '@matrix-org/olm'; + +describe('olm.Account', () => { + it('should construct an empty olm.Account', async () => { + await olm.init(); + const account = new olm.Account(); + expect(account).not.toBe(undefined); + }); +}); diff --git a/web/package.json b/web/package.json --- a/web/package.json +++ b/web/package.json @@ -87,7 +87,7 @@ }, "jest": { "roots": [ - "/utils" + "" ], "transform": { "\\.js$": "babel-jest"