Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ jobs:
steps:
- name: get the code
uses: actions/checkout@v6
- name: install depdendencies
run: npm install
- name: run the build
run: npm run build
- name: run the tests
Expand Down
2 changes: 1 addition & 1 deletion src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ function App() {
<img src={viteLogo} className="vite" alt="Vite logo" />
</div>
<div>
<h1>Get started</h1>
<h1>Getting started</h1>
<p>
Edit <code>src/App.jsx</code> and save to test <code>HMR</code>
</p>
Expand Down
2 changes: 1 addition & 1 deletion src/test/App.test.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import App from '../App'
describe('App', () => {
it('renders the Get started heading', () => {
render(<App />)
expect(screen.getByRole('heading', { name: /get started/i })).toBeInTheDocument()
expect(screen.getByRole('heading', { name: /getting started/i })).toBeInTheDocument()
})

it('renders the counter button starting at 0', () => {
Expand Down
Loading