Skip to content
This repository was archived by the owner on Sep 6, 2022. It is now read-only.

Commit 5a97494

Browse files
committed
✏️ Fixing typos and removing unnecessary jest config
1 parent 64a749b commit 5a97494

File tree

5 files changed

+11
-9
lines changed

5 files changed

+11
-9
lines changed

app/types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { RouterState } from 'connected-react-router';
33
import { ContainerState as LanguageProviderState } from 'containers/LanguageProvider/types';
44
import { ContainerState as AppState } from 'containers/App/types';
55
import { ContainerState as HomeState } from 'containers/HomePage/types';
6-
// [IMPORT NEW CONTAINERSTATE ABOVE] < Needed for generating continers seamlessly
6+
// [IMPORT NEW CONTAINERSTATE ABOVE] < Needed for generating containers seamlessly
77

88
export interface InjectedStore extends Store {
99
injectedReducers: any;
@@ -31,7 +31,7 @@ export interface ApplicationRootState {
3131
readonly global: AppState;
3232
readonly language: LanguageProviderState;
3333
readonly home: HomeState;
34-
// [INSERT NEW REDUCER KEY ABOVE] < Needed for generating continers seamlessly
34+
// [INSERT NEW REDUCER KEY ABOVE] < Needed for generating containers seamlessly
3535

3636
// for testing purposes
3737
readonly test: any;
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
readonly {{ camelCase name }}: {{ properCase name }}State;
2-
// [INSERT NEW REDUCER KEY ABOVE] < Needed for generating continers seamlessly
1+
readonly {{ camelCase name }}: {{ properCase name }}State;
2+
// [INSERT NEW REDUCER KEY ABOVE] < Needed for generating containers seamlessly
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
import { ContainerState as {{ properCase name }}State } from 'containers/{{ properCase name }}/types';
2-
// [IMPORT NEW CONTAINERSTATE ABOVE] < Needed for generating continers seamlessly
2+
// [IMPORT NEW CONTAINERSTATE ABOVE] < Needed for generating containers seamlessly

internals/templates/types/index.d.ts

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
import { Reducer, Store } from 'redux';
22
import { RouterState } from 'connected-react-router';
33
import { ContainerState as LanguageProviderState } from 'containers/LanguageProvider/types';
4-
// [IMPORT NEW CONTAINERSTATE ABOVE] < Needed for generating continers seamlessly
4+
// [IMPORT NEW CONTAINERSTATE ABOVE] < Needed for generating containers seamlessly
55

66
export interface InjectedStore extends Store {
77
injectedReducers: any;
88
injectedSagas: any;
9-
runSaga(saga: (() => IterableIterator<any>) | undefined, args: any | undefined): any;
9+
runSaga(
10+
saga: (() => IterableIterator<any>) | undefined,
11+
args: any | undefined,
12+
): any;
1013
}
1114

1215
export interface InjectReducerParams {
@@ -24,7 +27,7 @@ export interface InjectSagaParams {
2427
export interface ApplicationRootState {
2528
readonly router: RouterState;
2629
readonly language: LanguageProviderState;
27-
// [INSERT NEW REDUCER KEY ABOVE] < Needed for generating continers seamlessly
30+
// [INSERT NEW REDUCER KEY ABOVE] < Needed for generating containers seamlessly
2831

2932
// for testing purposes
3033
readonly test: any;

jest.config.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
module.exports = {
22
preset: 'ts-jest/presets/js-with-babel',
3-
testPathIgnorePatterns: ['RbGen*'],
43
collectCoverageFrom: [
54
'app/**/*.{js,jsx,ts,tsx}',
65
'!app/**/*.test.{js,jsx,ts,tsx}',

0 commit comments

Comments
 (0)