mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-07 22:43:19 +00:00
15 lines
269 B
JavaScript
15 lines
269 B
JavaScript
import { getters } from '../../message';
|
|
|
|
describe('#getters', () => {
|
|
it('getUIFlags', () => {
|
|
const state = {
|
|
uiFlags: {
|
|
isUpdating: false,
|
|
},
|
|
};
|
|
expect(getters.getUIFlags(state)).toEqual({
|
|
isUpdating: false,
|
|
});
|
|
});
|
|
});
|