import React, { useMemo } from 'react'; import { MemoryRouter } from 'react-router'; import { ThemeProvider } from 'styled-components'; import { DatasetEntity } from '../../app/entity/dataset/DatasetEntity'; import { DataFlowEntity } from '../../app/entity/dataFlow/DataFlowEntity'; import { DataJobEntity } from '../../app/entity/dataJob/DataJobEntity'; import { UserEntity } from '../../app/entity/user/User'; import { UserGroupEntity } from '../../app/entity/userGroup/UserGroup'; import EntityRegistry from '../../app/entity/EntityRegistry'; import { EntityRegistryContext } from '../../entityRegistryContext'; import { TagEntity } from '../../app/entity/tag/Tag'; import defaultThemeConfig from '../../conf/theme/theme_light.config.json'; import { GlossaryTermEntity } from '../../app/entity/glossaryTerm/GlossaryTermEntity'; import { MLFeatureTableEntity } from '../../app/entity/mlFeatureTable/MLFeatureTableEntity'; type Props = { children: React.ReactNode; initialEntries?: string[]; }; export function getTestEntityRegistry() { const entityRegistry = new EntityRegistry(); entityRegistry.register(new DatasetEntity()); entityRegistry.register(new UserEntity()); entityRegistry.register(new UserGroupEntity()); entityRegistry.register(new TagEntity()); entityRegistry.register(new DataFlowEntity()); entityRegistry.register(new DataJobEntity()); entityRegistry.register(new GlossaryTermEntity()); entityRegistry.register(new MLFeatureTableEntity()); return entityRegistry; } export default ({ children, initialEntries }: Props) => { const entityRegistry = useMemo(() => getTestEntityRegistry(), []); Object.defineProperty(window.document, 'cookie', { writable: true, value: 'actor=urn:li:corpuser:2', }); return ( {children} ); };