Package detail

@uuv/a11y

e2e-test-quest936MIT1.0.0-beta.79

A javascript lib for running a11y validation based on multiple reference(RGAA, etc)

a11y, rgaa, e2e, end2end

readme

@uuv/a11y


Automated a11y validation


@uuv/a11y is a solution for automated accessibility validations



npm


accessibility


jest



What is @uuv/a11y?


The @uuv library (User centric Usecases Validator) is an accessibility driven solution to facilitate the writing and execution of end-to-end tests that are understandable to any human being. @uuv/a11y is the part of this solution used to perform automated accessibility checks to guarantee non-regression. ## How it works ? The following references are available : ### RGAA For each criterion of the RGAA, the following algorithm is executed : Diagram a11Y RGAA Consult this page to find out which RGAA verifications are implemented in the library

Usage

With UNPKG

  1. Add script tag to import @uuv/a11y in your html page :
    <script src="https://unpkg.com/@uuv/a11y/bundle/uuv-a11y.bundle.js">
    </script>
    
  2. Add script tag to execute
     <script type="module">
       const rgaaChecker = new uuvA11y.RgaaChecker(window.location.url);
       const result = await rgaaChecker.validate().toPromise();
       // Print complete result
       console.log('result', result);
       // Print result summary group by criteria
       console.log('summary', result.summary());
     </script>
    
    Stackblitz example

As a dependency

  1. Import @uuv/a11y npm dependency
     npm install -D @uuv/a11y
    
  2. Use it in your file

     import {
       RgaaChecker,
       A11yResult,
     } from "@uuv/a11y";
    
     const currentUrl = "<set your current url>";
     const rgaaChecker = new RgaaChecker(currentUrl, enabledRules);
     const result: A11yResult = await rgaaChecker.validate().toPromise();
     // Print complete result
     console.log(result);
     // Print result summary group by criteria
     console.log(result.summary());
    

    During E2E Testing (recommended usage because it allows DOM nodes to be visualized)

  3. add @uuv/cypress npm dependency :

     npm install --save-dev @uuv/cypress
    
    1. create the file uuv/e2e/a11y.feature in the project root with the following content and replace url https://e2e-test-quest.github.io/simple-webapp/a11y-test.html by yours :

       Feature: A11y validation
      
          Scenario: Default RGAA
            When I visit path "https://e2e-test-quest.github.io/simple-webapp/a11y-test.html"
            Then I should not have any rgaa accessibility issue
      
          Scenario: RGAA with partial result
            When I visit path "https://e2e-test-quest.github.io/simple-webapp/a11y-test.html"
            Then I should have the following partial result based on the rgaa reference
               """json
               {
                  "status": "error",
                  "criteria": {
                     "1.5": {
                        "status": "manual"
                     },
                     "1.6": {
                        "status": "manual",
                        "tests": {
                           "1.6.5": {
                              "status": "success"
                           }
                        }
                     },
                     "11.1": {
                        "status": "success",
                        "tests": {
                           "11.1.1": {
                              "status": "success"
                           }
                        }
                     }
                  }
               }
               """
      

      You can also see the French example or the complete English example.

  4. Then execute your tests :
     npx uuv e2e
    

Want to contribute ?

Your help is welcome, see the Contributors guide.

License


MIT license

This project is licensed under the terms of the MIT license.

Support UUV through Open Collective

If you want to help UUV grow, you can fund the project directly via Open Collective.
Every contribution helps us dedicate more time and energy to improving this open-source tool.

Interested in becoming a sponsor?
We welcome sponsorships of all sizes!
Contact us via GitHub or through Open Collective to discuss opportunities.

Authors

changelog

1.0.0-beta.79 (2025-08-29)

Features

  • update react monorepo to v19 (4e10a59)

1.0.0-beta.78 (2025-08-25)

Features

  • assistant: update dependency antd to v5.27.1 (d0dc967)
  • runner-playwright: migrate to playwright-bdd 8.4.0 (0c9e0f0)

1.0.0-beta.77 (2025-08-13)

Bug Fixes

  • assistant: remove @testing-library/dom dependency and adapt selector (14684af)

1.0.0-beta.76 (2025-08-11)

Bug Fixes

  • manage aggrid case for runner and assistant, #1070 (dd00aa3)

1.0.0-beta.75 (2025-07-27)

Features

1.0.0-beta.74 (2025-07-23)

Features

  • assistant: add generation of table, grid and treegrid sentences, #1058 (7701aa0)

1.0.0-beta.73 (2025-07-22)

Features

  • assistant: remove dependency inspector-dom, #1054 (6f736a4)

1.0.0-beta.72 (2025-07-15)

Features

  • assistant: update dependency antd to v5.26.5 (0b94ebc)

1.0.0-beta.71 (2025-06-08)

Features

  • runner-playwright: update dependency playwright-bdd to v8.3.0 (5be62fc)

1.0.0-beta.70 (2025-06-01)

Features

  • assistant: fix assistant uuv test, #1006 (d670572)
  • update cypress to v14, nx to v21, eslint to v9 and move assitant builder to vite (1db2aa7)

1.0.0-beta.69 (2025-05-11)

Bug Fixes

  • deps: update dependency bootstrap to v5.3.6 (03b87ff)
  • deps: update dependency sequelize to v6.37.7 (7dda0b5)

Features

  • runner-playwright: update dependency typescript to v5.8.3 -- package-lock (e8fb704)
  • runner-playwright: update playwright monorepo to v1.52.0 (eba6ca0)

1.0.0-beta.68 (2025-04-21)

Bug Fixes

  • deps: update dependency bootstrap to v5.3.5 (c698360)
  • deps: update dependency chart.js to v4.4.9 (2dbb916)
  • runner-commons: update dependency figlet to v1.8.1 (54c4b28)

Features

  • runner-playwright: update dependency webpack to v5.99.6 (2c219f6)

1.0.0-beta.67 (2025-03-27)

Bug Fixes

  • runner-cypress: update dependency @cypress/webpack-preprocessor to v6.0.4 (eee7215)
  • runner-playwright: update dependency nanoid to v3.3.11 (c2adcce)

Features

  • runner-playwright: update playwright monorepo to v1.51.1 (3f0f81f)

1.0.0-beta.66 (2025-03-16)

Bug Fixes

  • a11y: update dependency axe-core to v4.10.3 (a2d1012)
  • runner-playwright: update dependency axe-core to v4.10.3 (5781908)
  • runner-playwright: update dependency nanoid to v3.3.10 (a6e9109)

1.0.0-beta.65 (2025-03-05)

Bug Fixes

  • a11y: update dependency rxjs to v7.8.2 (a2d97bc)
  • assistant: update codemirror (d319dec)
  • assistant: update dependency @uiw/codemirror-theme-github to v4.23.10 (67d021c)
  • runner-cypress: update dependency junit-report-merger to v7.0.1 (c644145)

Features

  • deps: update dependency @cucumber/gherkin to v32 (75c57c3)

1.0.0-beta.64 (2025-02-23)

Bug Fixes

  • set multiple-cucumber-html-reporter to v 3.9.0 and useCDN to true, #980 (a85c1c8)

1.0.0-beta.63 (2025-02-19)

Bug Fixes

  • deps: update dependency chart.js to v4.4.8 (1b34479)
  • runner-playwright: update dependency multiple-cucumber-html-reporter to v3.9.1 (5beda1d)

Features

  • deps: update dependency @cucumber/messages to v27.2.0 (9360afb)

1.0.0-beta.62 (2025-02-11)

Features

  • assistant: update dependency antd to v5.24.0 (420fa88)
  • deps: update dependency @cucumber/gherkin to v31 (f661a82)
  • runner-playwright: update dependency axe-playwright to v2.1.0 (dfb261a)

1.0.0-beta.61 (2025-02-02)

Bug Fixes

  • runner-cypress: update testing-library monorepo (be9645a)
  • runner-playwright: update dependency @cucumber/tag-expressions to v6.1.2 (3612d07)
  • update package-lock too, #954 (c2b8ecd)

Features

  • runner-cypress: update dependency cypress-axe to v1.6.0 (637762b)
  • runner-cypress: update dependency cypress-real-events to v1.14.0 (0e6b3a5)
  • runner-playwright: update playwright monorepo to v1.50.1 (0b8d9b1)

1.0.0-beta.60 (2025-01-13)

Bug Fixes

  • assistant: update dependency @codemirror/view to v6.36.2 (63b0594)

Features

  • runner-playwright: update dependency multiple-cucumber-html-reporter to v3.9.0 (ae6f840)

1.0.0-beta.59 (2025-01-05)

Features

  • a11y: update dependency @testing-library/dom to v10 (de56925)

1.0.0-beta.58 (2024-12-29)

Bug Fixes

  • assistant: update dependency antd to v5.22.7 (a5873ae)

Features

  • a11y: update testing-library monorepo (3d86317)
  • add @uuv/a11y dependency to @uuv/playwright (323aee0)
  • assistant: update dependency @codemirror/view to v6.36.1 (2a7f3f8)

1.0.0-beta.57 (2024-12-22)

Bug Fixes

  • assistant: update dependency @uiw/codemirror-theme-github to v4.23.7 (186f12e)
  • assistant: update dependency @uiw/react-codemirror to v4.23.7 (357b9cf)
  • assistant: update dependency antd to v5.22.5 (9dc158d)
  • runner-playwright: update playwright monorepo to v1.49.1 (101653f)

Features

  • runner-cypress: update dependency cypress to v13.17.0 (937dd6e)
  • runner-playwright: update dependency webpack to v5.97.1 (f8ad895)

1.0.0-beta.56 (2024-12-15)

Features

  • add a11y-dashboard project to workspace, #460 (5051848)

1.0.0-beta.55 (2024-12-08)

Bug Fixes

  • assistant: update dependency @codemirror/view to v6.35.2 (33e5c81)
  • assistant: update dependency antd to v5.22.3 (e47ecd5)
  • runner-cypress: update dependency cypress to v13.16.1 (090cb35)

Features

  • runner-playwright: update dependency chokidar to v4 (463c2c0)

1.0.0-beta.54 (2024-12-02)

Bug Fixes

  • runner-playwright: update dependency nanoid to v3.3.8 (1129db9)
  • update package-lock.json,#891 (3bcb03f)

1.0.0-beta.53 (2024-11-24)

Bug Fixes

  • assistant: update dependency antd to v5.22.2 (ca58136)

Features

  • assistant: update dependency @codemirror/view to v6.35.0 (fd83add)
  • runner-cypress: update dependency cypress to v13.16.0 (b28d613)
  • runner-playwright: update playwright monorepo to v1.49.0 (976b46c)

1.0.0-beta.52 (2024-11-17)

Bug Fixes

  • assistant: update codemirror (fe073ce)
  • deps: update dependency @cucumber/gherkin to v30.0.4 (ca4c17d)
  • deps: update dependency @cucumber/messages to v27.0.2 (d86ba3d)

Features

  • assistant: update dependency antd to v5.22.1 (338f997)
  • deps: update dependency tslib to v2.8.1 (c745d59)

1.0.0-beta.51 (2024-11-10)

Bug Fixes

  • assistant: update dependency @uiw/codemirror-theme-github to v4.23.6 (6e2ae5e)
  • assistant: update dependency antd to v5.21.6 (ecfa97d)
  • runner-cypress: update dependency cypress to v13.15.2 (04de8dc)
  • runner-playwright: update dependency @cucumber/tag-expressions to v6.1.1 (8cb97c8)

Features

  • deps: update dependency @cucumber/gherkin to v30 (b7ec4ba)
  • deps: update dependency @cucumber/messages to v27 (1605685)
  • deps: update dependency @mdx-js/react to v3.1.0 (5568b66)

1.0.0-beta.50 (2024-11-05)

Features

  • migrate uuv repository from orange opensource to e2e-test-quest organization, #859 (e0a6e5c)

1.0.0-beta.49 (2024-10-27)

Bug Fixes

  • assistant: update dependency @uiw/react-codemirror to v4.23.6 (378160a)
  • assistant: update dependency antd to v5.21.5 (b212ee4)
  • runner-cypress: update dependency cypress to v13.15.1 (b18ea16)
  • runner-playwright: update dependency axe-core to v4.10.2 (19c65d2)
  • runner-playwright: update playwright monorepo to v1.48.2 (1bce4e5)

1.0.0-beta.48 (2024-10-20)

Bug Fixes

  • assistant: update dependency antd to v5.21.4 (b4f23df)
  • revert dependency @badeball/cypress-cucumber-preprocessor to v20.1.2 (84646ae)
  • runner-playwright: update dependency axe-core to v4.10.1 (8abc703)
  • runner-playwright: update playwright monorepo to v1.48.1 (21718e8)

Features

  • runner-cypress: update dependency @badeball/cypress-cucumber-preprocessor to v21 (f6872eb)

1.0.0-beta.47 (2024-10-13)

Bug Fixes

  • assistant: update dependency antd to v5.21.3 (a472e5c)

Features

  • runner-commons: update dependency figlet to v1.8.0 (40314a6)
  • runner-playwright: update playwright monorepo to v1.48.0 (9aa7541)

1.0.0-beta.46 (2024-10-06)

Bug Fixes

  • assistant: update dependency @uiw/codemirror-theme-github to v4.23.5 (d34df74)
  • assistant: update dependency @uiw/react-codemirror to v4.23.5 (9767585)
  • runner-playwright: update dependency axe-playwright to v2.0.3 (b9a0450)

Features

  • assistant: update dependency antd to v5.21.2 (4217eea)
  • runner-playwright: update dependency multiple-cucumber-html-reporter to v3.8.0 (60ac2e5)

1.0.0-beta.45 (2024-09-29)

Bug Fixes

  • assistant: update codemirror (2eb05a4)

Features

  • runner-cypress: update dependency cypress to v13.15.0 (4a5c3a0)

1.0.0-beta.44 (2024-09-22)

Bug Fixes

  • runner-playwright: update playwright monorepo to v1.47.2 (d811c1a)

Features

  • deps: update dependency @cucumber/gherkin to v29 (7ca3412)
  • deps: update dependency @cucumber/messages to v26 (759ad7b)

1.0.0-beta.43 (2024-09-15)

Bug Fixes

  • assistant: update dependency antd to v5.20.6 (63c3caa)
  • runner-playwright: update playwright monorepo to v1.47.1 (a33a626)

Features

  • deps: update dependency tslib to v2.7.0 (23cc2de)

1.0.0-beta.42 (2024-09-08)

Bug Fixes

  • assistant: update dependency @uiw/codemirror-theme-github to v4.23.1 (e294930)
  • assistant: update dependency @uiw/react-codemirror to v4.23.1 (554e5e7)
  • assistant: update dependency antd to v5.20.5 (43e76bb)

Features

  • runner-cypress: update dependency cypress to v13.14.2 (1671339)
  • runner-playwright: update playwright monorepo to v1.47.0 (d8cf142)

1.0.0-beta.41 (2024-08-25)

Bug Fixes

  • runner-cypress: update dependency cypress to v13.13.3 (c536497)
  • runner-playwright: update dependency axe-playwright to v2.0.2 (f745bff)

1.0.0-beta.40 (2024-08-18)

Features

  • deps: update dependency node-ipc to v12 [security] (33d3bfd)

1.0.0-beta.39 (2024-08-11)

Bug Fixes

  • assistant: update dependency antd to v5.20.1 (5c3abf7)
  • runner-cypress: update dependency @badeball/cypress-cucumber-preprocessor to v20.1.2 (7dcb27d)

Features

  • assistant: update dependency @uiw/react-codemirror to v4.23.0 (8b3b8c7)
  • runner-playwright: update dependency axe-core to v4.10.0 (a2c7883)

1.0.0-beta.38 (2024-08-05)

Bug Fixes

  • runner-cypress: update dependency cypress to v13.13.2 (7b0044e)

Features

  • assistant: update dependency antd to v5.20.0 (709fdd3)

1.0.0-beta.37 (2024-07-28)

Bug Fixes

  • deps: update dependency @easyops-cn/docusaurus-search-local to v0.44.4 (fa8cb8f)
  • runner-cypress: update dependency @badeball/cypress-cucumber-preprocessor to v20.1.1 (645c9f0)
  • runner-playwright: update playwright monorepo to v1.45.3 (44402e0)

Features

  • deps: update dependency @cucumber/messages to v25 (01c669e)

1.0.0-beta.36 (2024-07-21)

Bug Fixes

  • assistant: update dependency antd to v5.19.2 (5407d03)
  • assistant: update dependency antd to v5.19.3 (9db1dce)
  • runner-cypress: update dependency cypress to v13.13.1 (3212aa5)
  • runner-playwright: update playwright monorepo to v1.45.2 (b6a9018)

Features

  • deps: update dependency @easyops-cn/docusaurus-search-local to v0.44.3 (377b9b9)
  • runner-cypress: update dependency @badeball/cypress-cucumber-preprocessor to v20.1.0 (ba0f0d9)
  • runner-playwright: update dependency multiple-cucumber-html-reporter to v3.7.0 (5850b13)

1.0.0-beta.35 (2024-07-14)

Bug Fixes

  • deps: update dependency tslib to v2.6.3 (5f1bd19)

Features

  • assistant: update dependency antd to v5.19.1 (18a90bf)
  • runner-cypress: update dependency cypress-real-events to v1.13.0 (e3b8dc0)
  • runner-playwright: update playwright monorepo to v1.45.1 (6be42dc)

1.0.0-beta.34 (2024-07-08)

Bug Fixes

1.0.0-beta.33 (2024-07-07)

Bug Fixes

  • assistant: remove not required cucumber dependency (da9f7b0)

Features

  • assistant: update dependency @codemirror/view to v6.28.4 (62aa840)
  • assistant: update dependency @uiw/codemirror-theme-github to v4.23.0 (ca8e6b8)
  • runner-cypress: update dependency cypress to v13.13.0 (78a9cfc)
  • runner-playwright: update dependency playwright-bdd to v6.6.0 (f30b4d5)

1.0.0-beta.32 (2024-07-02)

Features

  • introduce ipc-server to send uuv event, #664 (270ac38)

1.0.0-beta.31 (2024-06-27)

Bug Fixes

  • runner-cypress: update testing-library monorepo (bcedb57)

1.0.0-beta.30 (2024-06-16)

Bug Fixes

  • runner-cypress: update dependency @badeball/cypress-cucumber-preprocessor to v20.0.7 (8295ae2)
  • runner-cypress: update dependency @cypress/webpack-preprocessor to v6.0.2 (1b097a0)

1.0.0-beta.29 (2024-06-03)

Bug Fixes

  • runner-cypress: use badeball depency to generate cucumber json report, #643 (caf36a3)

1.0.0-beta.28 (2024-05-31)

Features

  • assistant: redesign assistant and implement keyboard navigation, #592, closes #623 (761bfae)

1.0.0-beta.27 (2024-05-24)

Bug Fixes

  • runner-playwright: update playwright monorepo to v1.44.1 (f2a5cb2)

Features

  • deps: update dependency clsx to v2 (d455fb5)
  • runner-cypress: update dependency cypress to v13 (d21c332)

1.0.0-beta.26 (2024-05-14)

Features

  • runner-cypress: update dependency @badeball/cypress-cucumber-preprocessor to v20 (e3e8e7c)
  • runner-cypress: update steps definitions for @badeball/cypress-cucumber-preprocessor v20 (9ec1e82)
  • runner-playwright: update playwright monorepo to v1.44.0 (bbd0518)

1.0.0-beta.25 (2024-05-10)

Bug Fixes

  • runner-playwright: update dependency axe-core to v4.9.1 (770cd9f)

Features

  • runner-cypress: update dependency junit-report-merger to v7 (7a9e310)

1.0.0-beta.24 (2024-05-02)

Features

  • update package-lock for update dependency typescript to v5 (f058481)

1.0.0-beta.23 (2024-04-22)

Features

  • (refactor) introduce uuv-cli engine from runner-commons, #576 (6de2feb)
  • add unit tests for uuv-cli implementations, #576 (7e67f13)

1.0.0-beta.22 (2024-04-14)

Bug Fixes

  • runner-cypress: update dependency is-admin to v4 (768819f)
  • runner-playwright: update dependency axe-core to v4.9.0 (59a4a6f)
  • runner-playwright: update playwright monorepo to v1.43.1 (bf431d5)

1.0.0-beta.21 (2024-04-04)

Bug Fixes

1.0.0-beta.20 (2024-03-28)

Features

  • deps: update node.js to v20 (f771f22)

1.0.0-beta.19 (2024-03-15)

Bug Fixes

  • runner-cypress: update dependency @cypress/webpack-preprocessor to v6 (2e9a52b)

1.0.0-beta.18 (2024-03-10)

Bug Fixes

  • runner-cypress: update dependency @testing-library/cypress to v10 (8ef11bf)
  • runner-playwright: update dependency axe-playwright to v2 (7e3f1f4)

1.0.0-beta.17 (2024-03-07)

Bug Fixes

Features

  • flutter-finder-usercentric: initialize flutter usercentric finder, #423 (cedcc3a)
  • runner-flutter: initialize uuv_flutter e2e cucumber library, #423 (bace2f6)

1.0.0-beta.16 (2024-03-04)

Bug Fixes

  • assistant: update dependency @ant-design/icons to v5.3.1 (a428304)
  • assistant: update dependency antd to v5.15.0 (cb516bc)
  • fix semantic release (aef0c23)
  • runner-playwright: update playwright monorepo to v1.42.1 (d0e78f6)

1.0.0-beta.15 (2024-02-26)

Features

Bug Fixes

  • runner-playwright: update playwright monorepo to v1.41.2 (8791934)

1.0.0-beta.14 (2024-02-25)

Features

Bug Fixes

  • runner-playwright: update dependency @cucumber/tag-expressions to v6.1.0 (47fb579)

1.0.0-beta.13 (2024-02-24)

Bug Fixes

  • assistant: update dependency antd to v5.14.2 (1335df6)
  • runner-cypress: update dependency cypress-real-events to v1.12.0 (55794fd)

1.0.0-beta.12 (2024-02-23)

Features

Bug Fixes

  • a11y: fix topic 5 typo in warning message, #451 (ac503f0)
  • assistant: update dependency @ant-design/icons to v5.3.0 (b4b2782)

1.0.0-beta.11 (2024-02-21)

Bug Fixes

  • deps: update dependency @mdx-js/react to v3.0.1 (e4ba234)

1.0.0-beta.10 (2024-02-15)

Bug Fixes

  • runner-playwright: update dependency axe-core to v4.8.4 (1db34e2)

1.0.0-beta.9 (2024-02-13)

Bug Fixes

  • update dependency multiple-cucumber-html-reporter to v3.6.2 (95d85c3)

1.0.0-beta.8 (2024-02-13)

Features

1.0.0-beta.7 (2024-01-24)

Features

1.0.0-beta.6 (2024-01-23)

Features

Bug Fixes

  • runner-playwright: update dependency axe-core to v4.8.3 (4623485)

1.0.0-beta.5 (2024-01-21)

Bug Fixes

  • a11y: update dependency @testing-library/dom to v9.3.4 (368b6b4)
  • assistant: fix assistant and enable uuv test for assistant, #437 (da82e1b)
  • deps: update dependency @easyops-cn/docusaurus-search-local to v0.40.1 (d5ed3d7)

1.0.0-beta.4 (2024-01-11)

Features

  • a11y: add a contains sentence for a11y rgaa, #424 (297cc33)

1.0.0-beta.3 (2024-01-08)

Features

1.0.0-beta.2 (2024-01-08)

Bug Fixes

1.0.0-beta.1 (2024-01-08)

Features

  • a11y: initialize @uuv/a11y lib, #330 (3c27ac5)
  • add accessibility tab and arrows, #166 (9b926cd)
  • assistant: setting up electron, fixes #132 (6d6e99c)
  • docs: add autocompletion searchfield to steps definition page, #255 (a0323ee)
  • runner-playwright: add error details and screenshot to report, fixes #110 (3c4a3cd)
  • runner-playwright: add tags option for runner-playwright, #416 (8787581)
  • runner-playwright: regenerate .spec when update, add or remove a .feature in open mode, #236 (8a2599a)
  • setup assistant-electron package, #132 (76d69c2)

Bug Fixes

  • assistant: fix assistant css problem, #120 (026d66a)
  • assistant: moving test app in component (5bdc75b)
  • deps: update dependency @cucumber/cucumber to v9.3.0 (212250b)
  • deps: update dependency @cucumber/cucumber to v9.6.0 (d0ac7ca)
  • deps: update dependency @cucumber/cucumber to v9.6.0 (52a3e4c)
  • deps: update dependency @cypress/webpack-preprocessor to v5.17.1 (9570e56)
  • deps: update dependency antd to v5.11.4 (33a0cf4)
  • deps: update dependency antd to v5.12.2 (0c472ee)
  • deps: update dependency antd to v5.7.3 (452fc3c)
  • deps: update dependency axe-core to v4.7.2 (965b9dc)
  • deps: update dependency axe-core to v4.8.2 (66b7dc2)
  • deps: update dependency cypress to v12.17.2 (49a3012)
  • deps: update dependency cypress to v12.17.3 (35c812b)
  • deps: update dependency cypress to v12.17.4 (998b754)
  • deps: update dependency cypress-axe to v1.5.0 (816775f)
  • deps: update dependency cypress-real-events to v1.10.1 (f60978d)
  • deps: update dependency cypress-real-events to v1.10.3 (9e3c991)
  • deps: update dependency cypress-real-events to v1.11.0 (1694807)
  • deps: update dependency figlet to v1.7.0 (8fbde74)
  • deps: update dependency multiple-cucumber-html-reporter to v3.5.0 (b8a9dab)
  • deps: update dependency nanoid to v3.3.6 (82fa0c3)
  • deps: update dependency nanoid to v3.3.7 (7d1d60e)
  • deps: update dependency primereact to v9.6.3 (f52ee84)
  • deps: update dependency primereact to v9.6.4 (ed3e76c)
  • deps: update dependency ts-node to v10.9.2 (b5c5ebb)
  • deps: update dependency tslib to v2.6.2 (f43d897)
  • deps: update docusaurus monorepo to v2.4.1 (9c0f5fb)
  • deps: update docusaurus monorepo to v2.4.3 (9e7ccf7)
  • prototype pollution in lodash - cve-2019-10744, #219 (4b16741)
  • release 1.4.0 package.json and rchangelog was not updated, #117 (cd7723d)
  • runner-cypress: relocate cypress-real-events dependency into project package.json, #213 (ffca8dd)
  • runner-playwright: fix workspace lint during ci, #108 (a3ac0d6)
  • runner-playwright: regenerate package-lock.json to fix lint, #109 (70044df)
  • runner-playwright: update @cucumber/cucumber dep version, #93 (a891a70)