Replace beforeEach with just a cleanLocalstorage call

The rest isn't needed anymore.
This commit is contained in:
Travis Ralston 2020-01-15 14:06:24 -07:00
parent 3c9c0ec447
commit e37da08730
2 changed files with 3 additions and 24 deletions

View file

@ -37,6 +37,7 @@ import {makeType} from "matrix-react-sdk/src/utils/TypeUtils";
import {ValidatedServerConfig} from "matrix-react-sdk/src/utils/AutoDiscoveryUtils";
import {sleep} from "../test-utils";
import "fake-indexeddb/auto";
import {cleanLocalstorage} from "../test-utils";
const DEFAULT_HS_URL='http://my_server';
const DEFAULT_IS_URL='http://my_is';
@ -86,6 +87,7 @@ describe('loading:', function() {
test_utils.deleteIndexedDB('matrix-js-sdk:crypto'),
test_utils.deleteIndexedDB('matrix-js-sdk:riot-web-sync'),
]);
cleanLocalstorage();
console.log(`${Date.now()}: loading: afterEach complete`);
});