Skip to content

Commit

Permalink
skip test and increase task timeout (DevExpress#7308)
Browse files Browse the repository at this point in the history
  • Loading branch information
Artem-Babich committed Sep 28, 2022
1 parent ef8d84d commit 81dc6f8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/test-functional-remote-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ on:
required: true
default: 'master'
merged_sha:
description: 'The merge commit SHA'
description: 'The merge commit SHA'
deploy_run_id:
description: 'The ID of a deployment workspace run with artifacts'
jobs:
jobs:
test:
runs-on: browserstack
environment: test-functional
env:
env:
BROWSERSTACK_USERNAME: ${{ secrets.BROWSERSTACK_USERNAME }}
BROWSERSTACK_ACCESS_KEY: ${{ secrets.BROWSERSTACK_ACCESS_KEY }}
USE_PUBLIC_HOSTNAME: true
Expand All @@ -35,7 +35,7 @@ jobs:
- uses: actions/checkout@v2
with:
ref: ${{github.event.inputs.merged_sha || github.event.inputs.sha}}

- uses: actions/setup-node@v2
with:
node-version: 14
Expand All @@ -62,11 +62,11 @@ jobs:
const { data: artifact } = await github.request(artifacts.artifacts.find(artifact=> artifact.name === 'npm').archive_download_url);
require('fs').writeFileSync(require('path').join(process.env.GITHUB_WORKSPACE, 'package.zip'), Buffer.from(artifact))
- run: |
unzip package.zip
tar --strip-components=1 -xzf testcafe-*.tgz
- name: Get npm cache directory
id: npm-cache-dir
run: |
Expand All @@ -80,7 +80,7 @@ jobs:
${{ runner.os }}-node-
- run: npm ci
- run: npx gulp test-functional-travis-desktop-osx-and-ms-edge-run --steps-as-tasks
timeout-minutes: 60
timeout-minutes: 120
- uses: actions/github-script@v3
with:
script: |
Expand Down
2 changes: 1 addition & 1 deletion test/client/fixtures/automation/select-test/index-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ $(document).ready(function () {
module('scroll in input');

// TODO: stabilize test on iOS
(browserUtils.isIOS ? QUnit.skip : asyncTest)('forward select and scroll', function () {
(browserUtils.isIOS || browserUtils.isSafari ? QUnit.skip : asyncTest)('forward select and scroll', function () {
const input = $(INPUT_SELECTOR)[0];

let mousedown = false;
Expand Down

0 comments on commit 81dc6f8

Please sign in to comment.