Skip to content

Commit 797fb53

Browse files
committed
fix: format
1 parent 19d779e commit 797fb53

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

docs/integrations/jest.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ To mock the module for a specific test file, call `jest.mock` at the top of the
4444

4545
```js
4646
jest.mock("@react-native-async-storage/async-storage", () =>
47-
require("@react-native-async-storage/async-storage/jest")
47+
require("@react-native-async-storage/async-storage/jest")
4848
);
4949
```
5050

@@ -55,9 +55,9 @@ The mock is a full in-memory implementation of the `AsyncStorage` interface. Add
5555
Example usage:
5656

5757
```ts
58-
import {clearAllMockStorages} from "@react-native-async-storage/async-storage/jest";
58+
import { clearAllMockStorages } from "@react-native-async-storage/async-storage/jest";
5959

6060
beforeEach(() => {
61-
clearAllMockStorages();
61+
clearAllMockStorages();
6262
});
6363
```

0 commit comments

Comments
 (0)