Every line of 'enzyme mount' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your JavaScript code is secure.
24 export function mount(component) { 25 return enzymeMount(component, { 26 attachTo: provideContainer() 27 }) 28 }
Secure your code as it's written. Use Snyk Code to scan source code in minutes – no build needed – and fix issues immediately. Enable Snyk Code
12 function mountComponent(props = {}) { 13 return mount(<UserProfile />); 14 }
537 function mount({ Component = Board, initialBoard = board, ...props } = {}) { 538 subject = render(<Component initialBoard={initialBoard} {...props} />) 539 return subject 540 }
17 function mount({ children = card, ...otherProps } = {}) { 18 subject = render( 19 <Card renderCard={defaultCard} {...otherProps}> 20 {children} 21 </Card> 22 ) 23 return subject 24 }
187 export default function mount(elem) { 188 return new Wrapper(elem); 189 }
8 export async function mount( 9 element: Element<any>, 10 children: (renderer: ReactTestRenderer) => Promise<mixed> 11 ) { 12 expect.hasAssertions(); 13 14 const renderer = create(element); 15 try { 16 await children(renderer); 17 } finally { 18 renderer.unmount(); 19 } 20 }
6 function testComponent(cb) { 7 const onData = function(res, err) { 8 cb(res, err); 9 } 10 const component = mount( 11 <ReactiveBase 12 app={config.ReactiveBase.app} 13 credentials={`${config.ReactiveBase.username}:${config.ReactiveBase.password}`} 14 type={config.ReactiveBase.type} 15 > 16 <div className="row"> 17 <div className="col s6 col-xs-6"> 18 <DataSearch 19 componentId="CitySensor" 20 dataField={[config.mapping.venue, config.mapping.topic]} 21 title="DataSearch" 22 defaultSelected={config.DataSearch.defaultSelected} 23 size={100} 24 /> 25 </div> 26 <div className="col s6 col-xs-6"> 27 <ReactiveList 28 componentId="SearchResult" 29 dataField={config.mapping.topic} 30 title="Results" 31 sortBy={config.ReactiveList.sortBy} 32 from={config.ReactiveList.from} 33 size={config.ReactiveList.size} 34 onData={onData} 35 requestOnScroll={true} 36 react={{ 37 'and': ["CitySensor"] 38 }} 39 /> 40 </div> 41 </div> 42 </ReactiveBase> 43 ); 44 }
33 export function mountAttached<C extends Component, P = C['props'], S = C['state']>(element: React.ReactElement<P>): ReactWrapper<P, S, C> { 34 const parent = document.createElement('div'); 35 document.body.appendChild(parent); 36 return mount(element, { attachTo: parent }); 37 }
19 export function mount(props) { 20 createDomElement(); 21 return vueLifecycles.mount(props); 22 }
14 function getWrapper(props) { 15 return mount(<DragScrollProvider {...props}>{children}</DragScrollProvider>) 16 }