mirror of
https://github.com/gosticks/react-bootstrap-table2.git
synced 2026-07-01 14:40:02 +00:00
fix test cases for #1030
This commit is contained in:
@@ -25,7 +25,7 @@ describe('Select Filter', () => {
|
||||
2: 'Unknown'
|
||||
};
|
||||
|
||||
afterEach(() => {
|
||||
beforeEach(() => {
|
||||
onFilter.reset();
|
||||
onFilterFirstReturn.reset();
|
||||
|
||||
|
||||
@@ -94,7 +94,8 @@ describe('FilterContext', () => {
|
||||
expect(mockBase).toHaveBeenCalledWith({
|
||||
data,
|
||||
onFilter: wrapper.instance().onFilter,
|
||||
onExternalFilter: wrapper.instance().onExternalFilter
|
||||
onExternalFilter: wrapper.instance().onExternalFilter,
|
||||
currFilters: wrapper.instance().currFilters
|
||||
});
|
||||
});
|
||||
});
|
||||
@@ -103,7 +104,6 @@ describe('FilterContext', () => {
|
||||
beforeEach(() => {
|
||||
wrapper = shallow(shallowContext(true));
|
||||
wrapper.render();
|
||||
wrapper.instance().currFilters = { price: { filterVal: 20, filterType: FILTER_TYPE.TEXT } };
|
||||
});
|
||||
|
||||
it('should pass original data without internal filtering', () => {
|
||||
@@ -111,7 +111,8 @@ describe('FilterContext', () => {
|
||||
expect(mockBase).toHaveBeenCalledWith({
|
||||
data,
|
||||
onFilter: wrapper.instance().onFilter,
|
||||
onExternalFilter: wrapper.instance().onExternalFilter
|
||||
onExternalFilter: wrapper.instance().onExternalFilter,
|
||||
currFilters: wrapper.instance().currFilters
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
@@ -728,7 +728,9 @@ describe('HeaderCell', () => {
|
||||
Filter
|
||||
}
|
||||
};
|
||||
wrapper = shallow(<HeaderCell column={ column } index={ index } onFilter={ onFilter } />);
|
||||
wrapper = shallow(
|
||||
<HeaderCell column={ column } index={ index } onFilter={ onFilter } currFilters={ {} } />
|
||||
);
|
||||
});
|
||||
|
||||
it('should render successfully', () => {
|
||||
|
||||
Reference in New Issue
Block a user