Created
December 2, 2022 16:22
-
-
Save andrewarosario/29ea39b55c7a03f6ae8d40fb818dc9c0 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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