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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
25 changed files with 132 additions and 202 deletions

View file

@ -20,7 +20,7 @@ function deleteIndexedDB() {
/* Delete the database before running any tests */
before(async () => {
window.Signal.Util.MessageController.install();
window.testUtilities.installMessageController();
await deleteIndexedDB();
try {
@ -34,7 +34,7 @@ before(async () => {
err && err.stack ? err.stack : err
);
}
await window.Signal.Util.initializeMessageCounter();
await window.testUtilities.initializeMessageCounter();
await window.Signal.Data.removeAll();
await window.storage.fetch();
});