1
私のテストを改善する方法を理解する上で助けが必要ですか?反応成分のテストを改善するには?
私はbranches
のテストを100%までカバーしましたが、statements
テスト、functions
テスト、lines
テストをどのようにカバーしましたか?ここ
そして、私のテストです:
/**
* Testing our ItemList component
*/
import { shallow } from 'enzyme';
import React from 'react';
import { BootstrapProvider } from 'bootstrap-styled';
import ItemList from '../index';
const renderComponent = (props = {}) => shallow(
<BootstrapProvider>
<ItemList {...props} />
</BootstrapProvider>
);
describe('<ItemList />',() => {
it('should render an <ItemList /> tag',() => {
const renderedComponent = renderComponent();
expect(renderedComponent.find('ItemList').length).toBe(1);
});
});
何かアドバイスは歓迎されているが
は、ここで(冗談で提供された)私のコードカバレッジです。
'shallow'の代わりに' render'を使って文をテストする必要があるかもしれません。 – Mihir