Skip to content

Commit

Permalink
CI: fixing types
Browse files Browse the repository at this point in the history
  • Loading branch information
Brent Kimmel committed Jun 24, 2020
1 parent 1528683 commit 6e0b932
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import {
limitsReached,
} from './selectors';
import { mockProcessEvent } from '../../models/process_event_test_helpers';
import { EndpointDocGenerator, Tree } from '../../../../common/endpoint/generate_data';
import { EndpointDocGenerator } from '../../../../common/endpoint/generate_data';

describe('resolver graph layout', () => {
let processA: LegacyEndpointEvent;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -176,8 +176,11 @@ describe('useCamera on an unpainted element', () => {
}
const serverResponseAction: ResolverAction = {
type: 'serverReturnedResolverData',
events,
stats: new Map(),
payload: {
events,
stats: new Map(),
lineageLimits: { children: null, ancestors: null },
},
};
act(() => {
store.dispatch(serverResponseAction);
Expand Down

0 comments on commit 6e0b932

Please sign in to comment.