build electron app
implement new fetch api calls use typescript
This commit is contained in:
@ -1,7 +1,7 @@
|
||||
import React from 'react';
|
||||
import {shallow} from 'enzyme';
|
||||
|
||||
import PageTitle from './PageTitle';
|
||||
import PageTitle, {Line} from './PageTitle';
|
||||
|
||||
describe('<Preview/>', function () {
|
||||
it('renders without crashing ', function () {
|
||||
@ -29,3 +29,10 @@ describe('<Preview/>', function () {
|
||||
});
|
||||
});
|
||||
|
||||
describe('<Line/>', () => {
|
||||
it('renders without crashing', function () {
|
||||
const wrapper = shallow(<Line/>);
|
||||
wrapper.unmount();
|
||||
});
|
||||
});
|
||||
|
||||
|
Reference in New Issue
Block a user