diff --git a/.github/actions/run-test/action.yml b/.github/actions/run-test/action.yml index b8ef33c423..fbe659bd4e 100644 --- a/.github/actions/run-test/action.yml +++ b/.github/actions/run-test/action.yml @@ -57,7 +57,7 @@ runs: # Prevent NX caching for mode `all` because it must run all testing, even though the code has not changed. command: | [[ "${{ inputs.mode }}" == "all" ]] && export NX_SKIP_NX_CACHE=true && unset NX_BASE - npm run test:${{ inputs.mode }} -- --browserstack ${{ inputs.browsers }} --includeCoverage=${{ inputs.coverage }} --output=minimal --parallel=${{ inputs.parallel }} + npm run test:${{ inputs.mode }} -- --browserstack ${{ inputs.browsers }} --includeCoverage=${{ inputs.coverage }} --parallel=${{ inputs.parallel }} env: TEST_HTTPS: ${{ inputs.https }} diff --git a/package-lock.json b/package-lock.json index 94571dd72d..3551e7084b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -17969,12 +17969,12 @@ "dev": true }, "node_modules/playwright": { - "version": "1.47.2", - "resolved": "https://registry.npmjs.org/playwright/-/playwright-1.47.2.tgz", - "integrity": "sha512-nx1cLMmQWqmA3UsnjaaokyoUpdVaaDhJhMoxX2qj3McpjnsqFHs516QAKYhqHAgOP+oCFTEOCOAaD1RgD/RQfA==", + "version": "1.48.1", + "resolved": "https://registry.npmjs.org/playwright/-/playwright-1.48.1.tgz", + "integrity": "sha512-j8CiHW/V6HxmbntOfyB4+T/uk08tBy6ph0MpBXwuoofkSnLmlfdYNNkFTYD6ofzzlSqLA1fwH4vwvVFvJgLN0w==", "dev": true, "dependencies": { - "playwright-core": "1.47.2" + "playwright-core": "1.48.1" }, "bin": { "playwright": "cli.js" @@ -17987,9 +17987,9 @@ } }, "node_modules/playwright-core": { - "version": "1.47.2", - "resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.47.2.tgz", - "integrity": "sha512-3JvMfF+9LJfe16l7AbSmU555PaTl2tPyQsVInqm3id16pdDfvZ8TTZ/pyzmkbDrZTQefyzU7AIHlZqQnxpqHVQ==", + "version": "1.48.1", + "resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.48.1.tgz", + "integrity": "sha512-Yw/t4VAFX/bBr1OzwCuOMZkY1Cnb4z/doAFSwf4huqAGWmf9eMNjmK7NiOljCdLmxeRYcGPPmcDgU0zOlzP0YA==", "dev": true, "bin": { "playwright-core": "cli.js" diff --git a/packages/elements/src/combo-box/__test__/combo-box.interaction.test.js b/packages/elements/src/combo-box/__test__/combo-box.interaction.test.js index 175feffac2..aa6fcfddf0 100644 --- a/packages/elements/src/combo-box/__test__/combo-box.interaction.test.js +++ b/packages/elements/src/combo-box/__test__/combo-box.interaction.test.js @@ -148,12 +148,19 @@ describe('combo-box/Interaction', function () { describe('Navigation Keys Work As Expected', function () { it('Once the list is open the first item should be highlighted', async function () { - const el = await fixture(''); + const el = await fixture(''); el.data = getData(); + el.opened = true; await elementUpdated(el); await onFocusEl(el); + const focused = el.getAttribute('focused'); + // eslint-disable-next-line no-console + console.log('focused', focused); const afItem = el.listEl.querySelector('ef-list-item[highlighted]'); // AF, Afghanistan expect(afItem.value).to.equal('AF', 'The first non header item should be highlighted'); + const item = el.listEl.querySelectorAll('ef-list-item'); + // eslint-disable-next-line no-console + console.log(item); }); it('Down key should highlight next item', async function () { const el = await fixture('');