mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04:00
Increase the timeout for clearing indexeddbs
Chrome seems to take ages (like, 1500ms regularly) to clear out the indexeddbs, and that's causing test timeouts. Bump the timeout to hack around it. Also: clear both dbs in parallel (can't hurt, right?) and improve diagnostics on the process.
This commit is contained in:
parent
cb4f57eb4a
commit
238afde00a
@ -82,9 +82,14 @@ describe('loading:', function () {
|
|||||||
// unmounting should have cleared the MatrixClientPeg
|
// unmounting should have cleared the MatrixClientPeg
|
||||||
expect(MatrixClientPeg.get()).toBe(null);
|
expect(MatrixClientPeg.get()).toBe(null);
|
||||||
|
|
||||||
|
// chrome seems to take *ages* to delete the indexeddbs.
|
||||||
|
this.timeout(10000);
|
||||||
|
|
||||||
// clear the indexeddbs so we can start from a clean slate next time.
|
// clear the indexeddbs so we can start from a clean slate next time.
|
||||||
await test_utils.deleteIndexedDB('matrix-js-sdk:crypto');
|
await Promise.all([
|
||||||
await test_utils.deleteIndexedDB('matrix-js-sdk:riot-web-sync');
|
test_utils.deleteIndexedDB('matrix-js-sdk:crypto'),
|
||||||
|
test_utils.deleteIndexedDB('matrix-js-sdk:riot-web-sync'),
|
||||||
|
]);
|
||||||
console.log(`${Date.now()}: loading: afterEach complete`);
|
console.log(`${Date.now()}: loading: afterEach complete`);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -34,7 +34,8 @@ export function deleteIndexedDB(dbName) {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
console.log(`${Date.now()}: Removing indexeddb instance: ${dbName}`);
|
const startTime = Date.now();
|
||||||
|
console.log(`${startTime}: Removing indexeddb instance: ${dbName}`);
|
||||||
const req = window.indexedDB.deleteDatabase(dbName);
|
const req = window.indexedDB.deleteDatabase(dbName);
|
||||||
|
|
||||||
req.onblocked = () => {
|
req.onblocked = () => {
|
||||||
@ -48,7 +49,8 @@ export function deleteIndexedDB(dbName) {
|
|||||||
};
|
};
|
||||||
|
|
||||||
req.onsuccess = () => {
|
req.onsuccess = () => {
|
||||||
console.log(`${Date.now()}: Removed indexeddb instance: ${dbName}`);
|
const now = Date.now();
|
||||||
|
console.log(`${now}: Removed indexeddb instance: ${dbName} in ${now-startTime} ms`);
|
||||||
resolve();
|
resolve();
|
||||||
};
|
};
|
||||||
}).catch((e) => {
|
}).catch((e) => {
|
||||||
|
Loading…
Reference in New Issue
Block a user