not really known
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
289 B

  1. import { renderComponent , expect } from '../test_helper';
  2. import App from '../../src/components/app';
  3. describe('App' , () => {
  4. let component;
  5. beforeEach(() => {
  6. component = renderComponent(App);
  7. });
  8. it('renders something', () => {
  9. expect(component).to.exist;
  10. });
  11. });