Skip to content
This repository has been archived by the owner on May 17, 2019. It is now read-only.

Commit

Permalink
Remove vestigial property from memoization test
Browse files Browse the repository at this point in the history
  • Loading branch information
rtsao committed Sep 19, 2018
1 parent fca2d93 commit 4b0b7b8
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/__tests__/memoize.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,7 @@ import {memoize} from '../memoize';
import type {Context} from '../types.js';

test('memoize', t => {
// $FlowFixMe
const mockCtx: Context = {
memoized: new Map(),
};
const mockCtx: Context = ({}: any);

let counter = 0;
const memoized = memoize(() => {
Expand Down

0 comments on commit 4b0b7b8

Please sign in to comment.