Skip to content
Snippets Groups Projects
Select Git revision
  • e1e039f2436fc8298bc85601ba3655a81960a463
  • demo_ci_gitlab_pages default
  • demo_gitlab_ci
  • 5-images-in-annotations
  • 5-final-images
  • 5-chpk-images-in-annot
  • tetras-main protected
  • 5-rebase-images-in-annot
  • 5-wip-images-in-annot
  • tmp
  • 1-edit-annotations-on-videos
  • 5-old-images-in-annotations
  • old_demo_ci_gitlab_pages
  • images_annotations
  • wip
  • devsetup
  • wip-annot-video-ui
  • wip-annotations-on-videos
  • master
  • v0.4.0_react16
  • wip-debugging-annotations
21 results

AnnotationCreation.js

Blame
  • Forked from IIIF / Mirador / Mirador annotations
    Source project has a limited visibility.
    BackgroundPluginArea.test.js 403 B
    import { shallow } from 'enzyme';
    import { BackgroundPluginArea } from '../../../src/components/BackgroundPluginArea';
    import { PluginHook } from '../../../src/components/PluginHook';
    
    it('renders the component', () => {
      const wrapper = shallow(<BackgroundPluginArea />);
      expect(wrapper.find('.mirador-background-plugin-area').length).toBe(1);
      expect(wrapper.find(PluginHook).length).toBe(1);
    });