Skip to content

Commit

Permalink
Fix devModeChecks in type tests
Browse files Browse the repository at this point in the history
  • Loading branch information
aryaemami59 committed Nov 30, 2023
1 parent 0293ebb commit 0cda9e0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 1 addition & 2 deletions type-tests/argsMemoize.test-d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -712,7 +712,7 @@ describe('memoize and argsMemoize', () => {
(id, todos) => todos.filter(todo => todo.id === id),
{
argsMemoize: microMemoize,
inputStabilityCheck: 'never',
devModeChecks: { inputStabilityCheck: 'never' },
memoize: memoizeOne,
argsMemoizeOptions: [],
memoizeOptions: [(a, b) => a === b]
Expand Down Expand Up @@ -882,7 +882,6 @@ describe('memoize and argsMemoize', () => {
)
})


test('autotrackMemoize types', () => {
const selector = createSelector(
[(state: RootState) => state.todos],
Expand Down
1 change: 1 addition & 0 deletions type-tests/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"esModuleInterop": true,
"strict": true,
"target": "ES2015",
"lib": ["ES2021.WeakRef"],
"declaration": true,
"noEmit": true,
"skipLibCheck": true,
Expand Down

0 comments on commit 0cda9e0

Please sign in to comment.