Remove Signal.Util

This commit is contained in:
Jamie Kyle
2023-04-10 20:54:43 -07:00
committed by GitHub
parent 3a069323a4
commit 76b9d07acf
25 changed files with 132 additions and 202 deletions

View File

@@ -10,6 +10,8 @@ import { sync } from 'fast-glob';
import { assert } from 'chai';
import { getSignalProtocolStore } from '../../SignalProtocolStore';
import { MessageController } from '../../util/MessageController';
import { initializeMessageCounter } from '../../util/incrementMessageCounter';
window.assert = assert;
@@ -27,6 +29,12 @@ window.testUtilities = {
cwd: __dirname,
}).forEach(require);
},
installMessageController() {
MessageController.install();
},
initializeMessageCounter() {
return initializeMessageCounter();
},
};
window.getSignalProtocolStore = getSignalProtocolStore;