From 66362a5687f9b269ed153a248df1c801d6f3a309 Mon Sep 17 00:00:00 2001 From: Andrey Lushnikov Date: Fri, 21 Feb 2020 13:09:36 -0800 Subject: [PATCH] chore: update appveyour config --- .appveyor.yml | 15 ++++----------- test/click.spec.js | 2 +- 2 files changed, 5 insertions(+), 12 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index b7db8e7aad..bd237e956d 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -1,19 +1,12 @@ environment: matrix: - - nodejs_version: "8.16.0" - FLAKINESS_DASHBOARD_NAME: Appveyor Chromium (Win + node8) - FLAKINESS_DASHBOARD_PASSWORD: - secure: g66jP+j6C+hkXLutBV9fdxB5fRJgcQQzy93SgQzXUmcCl/RjkJwnzyHvX0xfCVnv + - nodejs_version: "12" build: off install: - - ps: $env:FLAKINESS_DASHBOARD_BUILD_URL="https://ci.appveyor.com/project/aslushnikov/playwright/builds/$env:APPVEYOR_BUILD_ID/job/$env:APPVEYOR_JOB_ID" - ps: Install-Product node $env:nodejs_version - npm install - - if "%nodejs_version%" == "8.16.0" ( - npm run lint && - npm run coverage && - npm run test-doclint && - npm run test-types - ) + - npm run ctest + - npm run wtest + - npm run ftest diff --git a/test/click.spec.js b/test/click.spec.js index 0fc43e2ee2..c2f033b7d9 100644 --- a/test/click.spec.js +++ b/test/click.spec.js @@ -385,7 +385,7 @@ module.exports.describe = function({testRunner, expect, playwright, FFOX, CHROMI await context.close(); }); - it('should wait for stable position', async({page, server}) => { + fit('should wait for stable position', async({page, server}) => { await page.goto(server.PREFIX + '/input/button.html'); await page.$eval('button', button => { button.style.transition = 'margin 500ms linear 0s';