chore: Move referrerHost to appConfig store (#3433)

This commit is contained in:
Pranav Raj S
2021-11-22 15:05:29 +05:30
committed by GitHub
parent 1be7c2d72c
commit 1a8b8f0900
11 changed files with 138 additions and 81 deletions

View File

@@ -0,0 +1,19 @@
import { mutations } from '../../appConfig';
describe('#mutations', () => {
describe('#SET_REFERRER_HOST', () => {
it('sets referrer host properly', () => {
const state = { referrerHost: '' };
mutations.SET_REFERRER_HOST(state, 'www.chatwoot.com');
expect(state.referrerHost).toEqual('www.chatwoot.com');
});
});
describe('#SET_WIDGET_COLOR', () => {
it('sets widget color properly', () => {
const state = { widgetColor: '' };
mutations.SET_WIDGET_COLOR(state, { widgetColor: '#00bcd4' });
expect(state.widgetColor).toEqual('#00bcd4');
});
});
});