chore: test redux components with jest

This commit is contained in:
Sebastian Velez
2023-01-13 18:36:39 -05:00
parent 6dfa40e026
commit 5486a69305
12 changed files with 193 additions and 119 deletions

View File

@@ -1,10 +1,12 @@
import { CurrentUser } from './user';
export interface ApiKeyReducer {
value: string;
apiKey: string;
loggingEnabled: boolean;
totalTimeLoggedToday: string;
}
export interface ReduxSelector {
apiKey: ApiKeyReducer;
config: ApiKeyReducer;
currentUser: CurrentUser;
}