nitishSr / tackle-ui-tests

Tackle Web UI Tests

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

End-to-end Cypress tests for tackle-ui

Getting Started

Requirements

  1. Operating system

    Fedora 21 and above (64-bit only)

  2. Install Node.js 12 or 14 and above

    sudo dnf install nodejs
    OR
    sudo dnf install npm    # also installs nodejs
  1. Upgrade Node to 12 or 14 or above

    sudo npm install -g n

Install and run automation

  1. Clone automation repository

    git clone https://github.com/konveyor/tackle-ui-tests.git

  2. Go to folder and install

    cd tackle-ui-tests

    npm install .

  3. Open Cypress and run test cases

    npx cypress open

Code formatting using Prettier tool

  1. Format code

    npm run format

  2. Check formatting

    npm run check

Pull request testing

  1. Update Pull request with upstream main branch
  2. Pull requests will be tested against environment before merging to main codebase
  3. Pull request's owner must add RFR label once pull request is ready to test against environment
  4. After adding 'RFR' label; Owner should force push the pull request to trigger GitHub action
  5. In some cases, reviewer wants to trigger the PR test GH action but he/she can't force push the branch. Hence added feature of triggering GH action manually. Steps to trigger GH action for PR testing manually :- Go to Actions tab > Click on GH action(Pull request test) > Click on run workflow dropdown > select PR branch > Click on button Run workflow

Test runs

  1. Click here to see Old test runs - run1, run2, run3

  2. Click here to see Current test runs

Tag based test execution

  1. To run tests based on tags, use below command -

    npx cypress run --env grepTags=@tagName

  2. To run multiple tags(tiers) in a single run, provide tag names appended in below format -

    npx cypress run --env grepTags=@tag1+@tag2

About

Tackle Web UI Tests

License:Eclipse Public License 2.0


Languages

Language:TypeScript 99.2%Language:JavaScript 0.8%