79a525aa62
Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com> Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
14 lines
273 B
JavaScript
14 lines
273 B
JavaScript
import { getters } from '../../bulkActions';
|
|
|
|
describe('#getters', () => {
|
|
it('getUIFlags', () => {
|
|
const state = {
|
|
uiFlags: {
|
|
isUpdating: false,
|
|
},
|
|
};
|
|
expect(getters.getUIFlags(state)).toEqual({
|
|
isUpdating: false,
|
|
});
|
|
});
|
|
});
|