working commit tests

This commit is contained in:
John Mitchell
2018-11-30 10:19:24 -05:00
parent 12c8267b12
commit aab6aa4ef9
14 changed files with 108 additions and 149 deletions

View File

@@ -0,0 +1,11 @@
import React from 'react';
import { mount } from 'enzyme';
import OrganizationAdd from '../../../../src/pages/Organizations/views/Organization.add';
xdescribe('<OrganizationAdd />', () => {
test('initially renders succesfully', () => {
mount(
<OrganizationAdd />
);
});
});

View File

@@ -0,0 +1,11 @@
import React from 'react';
import { mount } from 'enzyme';
import OrganizationView from '../../../../src/pages/Organizations/views/Organization.view';
xdescribe('<OrganizationView />', () => {
test('initially renders succesfully', () => {
mount(
<OrganizationView />
);
});
});

View File

@@ -0,0 +1,11 @@
import React from 'react';
import { mount } from 'enzyme';
import OrganizationsList from '../../../../src/pages/Organizations/views/Organizations.list';
xdescribe('<OrganizationsList />', () => {
test('initially renders succesfully', () => {
mount(
<OrganizationsList />
);
});
});