Skip to content

Commit

Permalink
Merge pull request #8 from EspiraMarvin/fixes
Browse files Browse the repository at this point in the history
fixes: adds test fixes
  • Loading branch information
EspiraMarvin authored Mar 5, 2024
2 parents 4dd1d3f + 7225257 commit 70d88e9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
node-version: [18.x, 20.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
Expand Down
4 changes: 2 additions & 2 deletions src/components/__test__/AudioLibrary.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ describe('AudioLibrary Component', () => {
expect(componentTitle).toBeInTheDocument()
})

it('should test length of all pills in the library to be 7', async () => {
it('should test length of all pills in the library to be 11', async () => {
render(<MockAudioLibrary />)
const trackInput = await screen.findAllByTestId('trackTitle')
expect(trackInput.length).toBe(7)
expect(trackInput.length).toBe(11)
})
})

0 comments on commit 70d88e9

Please sign in to comment.