[docs] Fix single quote instead of backtick

# What I did
I replaced backticks by single quote.

# How to test
No backticks in the snippet.
This commit is contained in:
Arkadiusz Adamski 2020-08-27 15:25:25 +02:00 committed by GitHub
parent f90f10d43c
commit e1444a3028
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,8 +7,8 @@ import '@testing-library/jest-dom/extend-expect';
import { Primary } from './Button.stories';
it('renders the button in the primary state, () => {
it('renders the button in the primary state', () => {
render(<Primary {...Primary.args} />);
expect(screen.getByRole('button')).toHaveTextContent(Primary);
expect(screen.getByRole('button')).toHaveTextContent('Primary');
});
```