Fix flaky jest tests (#29927)

* Debug flaky jest test

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>

* Iterate

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>

* Discard changes to jest.config.ts

---------

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
Michael Telatynski
2025-05-13 10:27:08 +01:00
committed by GitHub
parent 10757b4357
commit e235100dd0
3 changed files with 8 additions and 7 deletions

View File

@@ -1115,7 +1115,9 @@ export async function onLoggedOut(): Promise<void> {
* @param {object} opts Options for how to clear storage.
* @returns {Promise} promise which resolves once the stores have been cleared
*/
async function clearStorage(opts?: { deleteEverything?: boolean }): Promise<void> {
export async function clearStorage(opts?: { deleteEverything?: boolean }): Promise<void> {
logger.info(`Clearing storage, deleteEverything=${opts?.deleteEverything}`);
if (window.localStorage) {
// get the currently defined device language, if set, so we can restore it later
const language = SettingsStore.getValueAt(SettingLevel.DEVICE, "language", null, true, true);

View File

@@ -92,8 +92,7 @@ export async function checkConsistency(): Promise<{
if (dataInLocalStorage && cryptoInited && !dataInCryptoStore) {
healthy = false;
error(
"Data exists in local storage and crypto is marked as initialised " +
" but no data found in crypto store. " +
"Data exists in local storage and crypto is marked as initialised but no data found in crypto store. " +
"IndexedDB storage has likely been evicted by the browser!",
);
}