Spaces:
Sleeping
Sleeping
File size: 1,616 Bytes
f75d7fa |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 |
import messages from '@/locales/en.json';
import { render, screen, within } from '@testing-library/react';
import { NextIntlClientProvider } from 'next-intl';
import { BaseTemplate } from './BaseTemplate';
describe('Base template', () => {
describe('Render method', () => {
it('should have 3 menu items', () => {
render(
<NextIntlClientProvider locale="en" messages={messages}>
<BaseTemplate
leftNav={(
<>
<li>link 1</li>
<li>link 2</li>
<li>link 3</li>
</>
)}
>
{null}
</BaseTemplate>
</NextIntlClientProvider>,
);
const menuItemList = screen.getAllByRole('listitem');
expect(menuItemList).toHaveLength(3);
});
it('should have a link to support creativedesignsguru.com', () => {
render(
<NextIntlClientProvider locale="en" messages={messages}>
<BaseTemplate leftNav={<li>1</li>}>{null}</BaseTemplate>
</NextIntlClientProvider>,
);
const copyrightSection = screen.getByText(/© Copyright/);
const copyrightLink = within(copyrightSection).getByRole('link');
/*
* PLEASE READ THIS SECTION
* We'll really appreciate if you could have a link to our website
* The link doesn't need to appear on every pages, one link on one page is enough.
* Thank you for your support it'll mean a lot for us.
*/
expect(copyrightLink).toHaveAttribute(
'href',
'https://creativedesignsguru.com',
);
});
});
});
|