Create synapse-admin using 'rekit create --sass synapse-admin'

Change-Id: I14a94754264c83faffb7fea5099d37c97e60b07a
This commit is contained in:
Manuel Stahl
2019-02-07 12:47:18 +01:00
parent 427e91d123
commit 00d6959927
93 changed files with 3034 additions and 0 deletions
@@ -0,0 +1,11 @@
import React from 'react';
import { shallow } from 'enzyme';
import { PageNotFound } from '../../../src/features/common';
describe('common/PageNotFound', () => {
it('renders node with correct class name', () => {
const renderedComponent = shallow(<PageNotFound />);
expect(renderedComponent.find('.common-page-not-found').length).toBe(1);
});
});