environments/review-chats-g56n7m/deployments/1665
Chewbacca 2022-12-01 13:08:05 -05:00
rodzic 67a61ad3b4
commit d875c1c3e8
1 zmienionych plików z 6 dodań i 4 usunięć

Wyświetl plik

@ -20,12 +20,14 @@ describe('<ChatPage />', () => {
});
describe('when you complete onboarding', () => {
const id = '1';
beforeEach(() => {
store = {
me: '1',
me: id,
accounts: ImmutableMap({
'1': normalizeAccount({
id: '1',
[id]: normalizeAccount({
id,
acct: 'justin-username',
display_name: 'Justin L',
avatar: 'test.jpg',
@ -37,7 +39,7 @@ describe('<ChatPage />', () => {
__stub((mock) => {
mock
.onPatch('/api/v1/accounts/update_credentials')
.reply(200, { chats_onboarded: true, id: 1 });
.reply(200, { chats_onboarded: true, id });
});
});