Page MenuHomePhabricator

D7027.diff
No OneTemporary

D7027.diff

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": [
- "<rootDir>/utils"
+ "<rootDir>"
],
"transform": {
"\\.js$": "babel-jest"

File Metadata

Mime Type
text/plain
Expires
Sun, Dec 1, 4:31 PM (17 h, 40 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2605569
Default Alt Text
D7027.diff (1 KB)

Event Timeline