-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
➕ chore(deps-dev): add dependency @testing-library/user-event
- Loading branch information
Showing
3 changed files
with
63 additions
and
4 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,62 @@ | ||
// Imports | ||
import { describe, it, expect } from 'vitest'; | ||
import { render, screen } from '@testing-library/react'; | ||
import { describe, it, expect, afterEach } from 'vitest'; | ||
import { render, screen, cleanup } from '@testing-library/react'; | ||
import userEvent from '@testing-library/user-event'; | ||
|
||
// To Test | ||
import App from './App'; | ||
|
||
// Tests | ||
describe('Renders main page correctly', async () => { | ||
/** | ||
* Resets all renders after each test | ||
*/ | ||
afterEach(() => { | ||
cleanup(); | ||
}); | ||
|
||
/** | ||
* Passes - shows title correctly | ||
*/ | ||
it('Should render the page correctly', async () => { | ||
// Setup | ||
render(<App />); | ||
await render(<App />); | ||
const h1 = await screen.queryByText('Vite + React'); | ||
|
||
// Expectations | ||
// Post Expectations | ||
expect(h1).not.toBeNull(); | ||
}); | ||
|
||
/** | ||
* Passes - shows the button count correctly present | ||
*/ | ||
it('Should show the button count set to 0', async () => { | ||
// Setup | ||
await render(<App />); | ||
const button = await screen.queryByText('count is 0'); | ||
|
||
// Expectations | ||
expect(button).not.toBeNull(); | ||
}); | ||
|
||
/** | ||
* Passes - clicks the button 3 times and shows the correct count | ||
*/ | ||
it('Should show the button count set to 3', async () => { | ||
// Setup | ||
const user = userEvent.setup(); | ||
await render(<App />); | ||
const button = await screen.queryByText('count is 0'); | ||
|
||
// Pre Expectations | ||
expect(button).not.toBeNull(); | ||
|
||
// Actions | ||
await user.click(button as HTMLElement); | ||
await user.click(button as HTMLElement); | ||
await user.click(button as HTMLElement); | ||
|
||
// Post Expectations | ||
expect(button?.innerHTML).toBe('count is 3'); | ||
}); | ||
}); |