DevExpress / testcafe-action

TestCafe test runner for GitHub Actions

Home Page:https://testcafe.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Allow to install testcafe addons

thomaschaaf opened this issue · comments

I need testcafe-react-selectors in my project. What would be the best way to install this?

commented

Hello, @thomaschaaf,

TestCafe action able to pick up addon installed locally in your project.
You can add testcafe-react-selectors package as a dependency to your package.json file. After that, add npm i command in your workflow before running the action:

...
- run: npm i
- name: Run TestCafe Tests
  uses: DevExpress/testcafe-action@latest
...