Files
browser-wakatime/src/components/MainList.test.tsx
2024-08-31 17:51:40 +06:00

59 lines
1.5 KiB
TypeScript

import React from 'react';
import { Browser } from 'webextension-polyfill';
import { renderWithProviders } from '../utils/test-utils';
import MainList from './MainList';
jest.mock<typeof import('webextension-polyfill')>('webextension-polyfill', () => {
return {
runtime: {
getManifest: () => ({
version: 'test-version',
}),
},
} as Browser;
});
describe('MainList', () => {
let loggingEnabled: boolean, totalTimeLoggedToday: string;
beforeEach(() => {
loggingEnabled = false;
totalTimeLoggedToday = '1/1/1999';
});
it('should render properly', () => {
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
const { container } = renderWithProviders(
<MainList loggingEnabled={loggingEnabled} totalTimeLoggedToday={totalTimeLoggedToday} />,
);
expect(container).toMatchInlineSnapshot(`
<div>
<div>
<div
class="list-group"
>
<a
class="list-group-item text-body-secondary"
href="#"
>
<i
class="fa fa-fw fa-cogs me-2"
/>
Options
</a>
<a
class="list-group-item text-body-secondary"
href="https://wakatime.com/login"
rel="noreferrer"
target="_blank"
>
<i
class="fa fa-fw fa-sign-in me-2"
/>
Login
</a>
</div>
</div>
</div>
`);
});
});