diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index f37f02f..605c586 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -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: diff --git a/src/components/__test__/AudioLibrary.test.tsx b/src/components/__test__/AudioLibrary.test.tsx index 718dedf..5243eed 100644 --- a/src/components/__test__/AudioLibrary.test.tsx +++ b/src/components/__test__/AudioLibrary.test.tsx @@ -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() const trackInput = await screen.findAllByTestId('trackTitle') - expect(trackInput.length).toBe(7) + expect(trackInput.length).toBe(11) }) })