Skip to content

Commit

Permalink
fix toc_entry jest test
Browse files Browse the repository at this point in the history
  • Loading branch information
nreese committed May 27, 2020
1 parent 16b08c3 commit 5fda587
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { ReactElement } from 'react';
import { LayerDescriptor } from '../../../common/descriptor_types';

export type RenderWizardArguments = {
previewLayer: (layerDescriptor: LayerDescriptor | null, isIndexingSource?: boolean) => void;
previewLayers: (layerDescriptors: LayerDescriptor[], isIndexingSource?: boolean) => void;
mapColors: string[];
// upload arguments
isIndexingTriggered: boolean;
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ const mockLayer = {
getDisplayName: () => {
return 'layer 1';
},
isPreviewLayer: () => {
return false;
},
isVisible: () => {
return true;
},
Expand Down

0 comments on commit 5fda587

Please sign in to comment.