mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 06:51:19 +08:00
18 lines
485 B
Plaintext
18 lines
485 B
Plaintext
```ts
|
|
// button.component.spec.ts
|
|
|
|
import { render, screen } from '@testing-library/angular';
|
|
|
|
import ButtonComponent from './button.component';
|
|
|
|
//👇 Imports a specific story for the test
|
|
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();
|
|
});
|
|
```
|