mirror of
https://github.com/Raghu-Ch/angular-challenges.git
synced 2026-02-10 21:03:03 -05:00
11 lines
281 B
TypeScript
11 lines
281 B
TypeScript
import { render } from '@testing-library/angular';
|
|
import { AppComponent } from './app.component';
|
|
|
|
describe('AppComponent', () => {
|
|
describe('When checking the checkbox', () => {
|
|
it('Then button is enabled', async () => {
|
|
await render(AppComponent);
|
|
});
|
|
});
|
|
});
|