import React from 'react'; import { Route, Switch } from 'react-router-dom'; import { buildAccount } from 'soapbox/jest/factory'; import { render, rootState } from '../../../../jest/test-helpers'; import ChatWidget from '../chat-widget/chat-widget'; const id = '1'; const account = buildAccount({ id, acct: 'justin-username', display_name: 'Justin L', avatar: 'test.jpg', source: { chats_onboarded: true, }, }); const store = rootState .set('me', id) .set('entities', { 'ACCOUNTS': { store: { [id]: account, }, lists: {}, }, }); describe('', () => { describe('when on the /chats endpoint', () => { it('hides the widget', async () => { const App = () => ( Chats page Homepage ); const screen = render( , {}, store, { initialEntries: ['/chats'] }, ); expect(screen.queryAllByTestId('pane')).toHaveLength(0); }); }); // describe('when the user has not onboarded chats', () => { // it('hides the widget', async () => { // const accountWithoutChats = buildAccount({ // id, // acct: 'justin-username', // display_name: 'Justin L', // avatar: 'test.jpg', // source: { // chats_onboarded: false, // }, // }); // const newStore = store.set('entities', { // 'ACCOUNTS': { // store: { // [id]: accountWithoutChats, // }, // lists: {}, // }, // }); // const screen = render( // , // {}, // newStore, // ); // expect(screen.queryAllByTestId('pane')).toHaveLength(0); // }); // }); describe('when the user is onboarded and the endpoint is not /chats', () => { it('shows the widget', async () => { const App = () => ( Chats page Homepage ); const screen = render( , {}, store, { initialEntries: ['/'] }, ); expect(screen.queryAllByTestId('pane')).toHaveLength(1); }); }); });