Create synapse-admin using 'rekit create --sass synapse-admin'
Change-Id: I14a94754264c83faffb7fea5099d37c97e60b07a
This commit is contained in:
@@ -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);
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user