Skip to content

Commit

Permalink
organized imports, fixed eslint issues, formatted
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Sep 21, 2023
1 parent 1818301 commit 13eedef
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion App.test.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { describe, expect, test, beforeEach } from '@jest/globals';
import { beforeEach, describe, expect, test } from '@jest/globals';
import { fireEvent, render, waitFor } from '@testing-library/react-native';
import App from './App';

Expand Down
2 changes: 1 addition & 1 deletion __mocks__/@react-native-async-storage/async-storage.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from '@react-native-async-storage/async-storage/jest/async-storage-mock';
export * from '@react-native-async-storage/async-storage/jest/async-storage-mock';
2 changes: 1 addition & 1 deletion jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ module.exports = {
'/jest.config.js',
'/coverage/',
],
setupFiles: ['./jestSetupFile.js']
setupFiles: ['./jestSetupFile.js'],
};
4 changes: 2 additions & 2 deletions jestSetupFile.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
jest.mock('@react-native-async-storage/async-storage', () =>
require('@react-native-async-storage/async-storage/jest/async-storage-mock')
);
require('@react-native-async-storage/async-storage/jest/async-storage-mock'),
);

0 comments on commit 13eedef

Please sign in to comment.