mirror of
https://github.com/chatwoot/chatwoot.git
synced 2026-06-13 21:01:16 +08: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,
|
|
});
|
|
});
|
|
});
|