mirror of
https://github.com/Raghu-Ch/angular-challenges.git
synced 2026-02-10 12:53:03 -05:00
9 lines
203 B
TypeScript
9 lines
203 B
TypeScript
import { render } from '@testing-library/angular';
|
|
import { AppComponent } from './app.component';
|
|
|
|
describe('AppComponent', () => {
|
|
test('...', async () => {
|
|
await render(AppComponent);
|
|
});
|
|
});
|