Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: Replace MouseEvent buttons with button #712

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

fix(tests): fix related tests

0b4e14b
Select commit
Loading
Failed to load commit list.
Open

refactor: Replace MouseEvent buttons with button #712

fix(tests): fix related tests
0b4e14b
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Apr 29, 2024 in 3m 37s

Build Passed

The build passed. This is a change from the previous build, which errored.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #712 refactor: Replace MouseEvent buttons with button .
Any changes that have been made to the master branch before the build ran are also included.

Jobs and Stages

This build has two jobs, running in parallel.

Job Node.js OS State
8378.1 Code Lint 18 Linux passed
8378.2 Unit Tests 18 Linux passed

Build Configuration

Build Option Setting
Language Node.js
Operating System Linux (Focal)
Node.js Version 18
Build Configuration
{
  "language": "node_js",
  "os": [
    "linux"
  ],
  "dist": "focal",
  "node_js": [
    "18"
  ],
  "addons": {
    "apt": {
      "packages": [
        "libgconf-2-4"
      ]
    }
  },
  "cache": {
    "yarn": true,
    "directories": [
      "node_modules",
      "~/.cache/Cypress"
    ]
  },
  "before_install": [
    "curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.22.5",
    "export HUSKY_SKIP_HOOKS=1",
    "export NODE_OPTIONS=--openssl-legacy-provider",
    "export PATH=$HOME/.yarn/bin:$PATH",
    "export TZ=America/Los_Angeles"
  ],
  "jobs": {
    "include": [
      {
        "name": "Code Lint",
        "script": [
          "yarn lint"
        ]
      },
      {
        "name": "Unit Tests",
        "script": [
          "yarn test"
        ]
      },
      {
        "name": "E2E Tests",
        "if": "fork = false",
        "script": [
          "yarn test:e2e"
        ]
      }
    ]
  },
  "notifications": {
    "email": [
      {
        "recipients": [
          "[email protected]"
        ]
      }
    ]
  }
}