Unit Test 12 - Fix Storage Mock

Summary:
**Final Goal**
Currently unit test by default unmock everything and dependencies have to be explicitely mocked. The goal is to mock everything by default and whitelist (unmock) explicitely.

**This Diff**
Fixes the typing in the mock and add unit tests

Differential Revision: D16198318

fbshipit-source-id: d2bb71e9c940f4aeb48f8ac92bf3c5444ebc2025
This commit is contained in:
Florian Schoellhammer 2019-07-12 11:10:43 -07:00 коммит произвёл Facebook Github Bot
Родитель daa6b0a1fe
Коммит 2bf8c8bcd6
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -1123,7 +1123,7 @@ declare var expect: {
hasAssertions(): void,
any(value: mixed): JestAsymmetricEqualityType,
anything(): any,
arrayContaining(value: Array<mixed>): Array<mixed>,
arrayContaining(value: $ReadOnlyArray<mixed>): Array<mixed>,
objectContaining(value: Object): Object,
/** Matches any received string that contains the exact expected string. */
stringContaining(value: string): string,
@ -1162,7 +1162,7 @@ declare var jasmine: {
DEFAULT_TIMEOUT_INTERVAL: number,
any(value: mixed): JestAsymmetricEqualityType,
anything(): any,
arrayContaining(value: Array<mixed>): Array<mixed>,
arrayContaining(value: $ReadOnlyArray<mixed>): Array<mixed>,
clock(): JestClockType,
createSpy(name: string): JestSpyType,
createSpyObj(