@material-ui/core/styles#hexToRgb TypeScript Examples
The following examples show how to use
@material-ui/core/styles#hexToRgb.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: Items.test.tsx From backstage with Apache License 2.0 | 6 votes |
describe('Items', () => {
beforeEach(async () => {
await renderSidebar();
});
describe('SidebarItem', () => {
it('should render a link when `to` prop provided', async () => {
expect(
await screen.findByRole('link', { name: /home/i }),
).toBeInTheDocument();
});
it('should render a button when `to` prop is not provided', async () => {
expect(
await screen.findByRole('button', { name: /create/i }),
).toBeInTheDocument();
});
it('should render a button with custom style', async () => {
expect(
await screen.findByRole('button', { name: /create/i }),
).toHaveStyle(`background-color: ${hexToRgb('2b2a2a')}`);
});
});
describe('SidebarSearchField', () => {
it('should be defaultPrevented when enter is pressed', async () => {
const searchEvent = createEvent.keyDown(
await screen.findByPlaceholderText('Search'),
{ key: 'Enter', code: 'Enter', charCode: 13 },
);
fireEvent(await screen.findByPlaceholderText('Search'), searchEvent);
expect(searchEvent.defaultPrevented).toBeTruthy();
});
});
});