storybook/docs/snippets/angular/button-test.ts.mdx
2021-01-30 17:42:31 +00:00

17 lines
440 B
Plaintext

```ts
// button.component.spec.ts
import { render, screen } from '@testing-library/angular';
import ButtonComponent from './button.component';
import { Primary } from './Button.stories';
test('renders the button in the primary state ', async () => {
await render(ButtonComponent, {
componentProperties: Primary.args,
});
expect(screen.getByRole('button').classList.contains('storybook-button--primary')).toBeTruthy();
});
```