Skip to content

Instantly share code, notes, and snippets.

@andrewarosario
Created December 2, 2022 16:22
Show Gist options
  • Save andrewarosario/29ea39b55c7a03f6ae8d40fb818dc9c0 to your computer and use it in GitHub Desktop.
Save andrewarosario/29ea39b55c7a03f6ae8d40fb818dc9c0 to your computer and use it in GitHub Desktop.
import { render, screen } from '@testing-library/angular';
const setup = async () => {
await render(UsersComponent);
}
describe('UsersComponent', () => {
it('should display table', async () => {
await setup();
const table = screen.getByTestId('table');
expect(table).toBeInTheDocument();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment