From 9979ec37177893e4107166002e8db83fddbfa303 Mon Sep 17 00:00:00 2001 From: leandrogilcarrano Date: Mon, 13 May 2024 17:45:00 -0300 Subject: [PATCH] add firefox, webkit --- .github/workflows/deployment.yml | 2 +- package.json | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deployment.yml b/.github/workflows/deployment.yml index 6b2de44f..29986b18 100644 --- a/.github/workflows/deployment.yml +++ b/.github/workflows/deployment.yml @@ -21,7 +21,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-20.04, windows-2019, macos-latest] + os: [ubuntu-20.04, windows-2019] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2 diff --git a/package.json b/package.json index 55cb266a..e4774b4d 100644 --- a/package.json +++ b/package.json @@ -97,10 +97,10 @@ "format:eslint": "eslint --ext .js,.html . --fix --ignore-path .gitignore", "lint": "npm run lint:eslint", "format": "npm run format:eslint", - "test": "web-test-runner test/*.test.js --coverage --node-resolve --playwright --browsers chromium && npm run test:visual", - "test:visual": "web-test-runner test/visual/*.test.js --coverage --node-resolve --playwright --browsers chromium", + "test": "web-test-runner test/*.test.js --coverage --node-resolve --playwright --browsers chromium firefox webkit && npm run test:visual", + "test:visual": "web-test-runner test/visual/*.test.js --coverage --node-resolve --playwright --browsers chromium firefox webkit", "test:watch": "web-test-runner test/*.test.js --node-resolve --watch --playwright --browsers chromium", - "test:visual:update": "web-test-runner test/**/*.test.js --coverage --node-resolve --playwright --browsers chromium --update-visual-baseline\n", + "test:visual:update": "web-test-runner test/**/*.test.js --coverage --node-resolve --playwright --browsers chromium firefox webkit --update-visual-baseline\n", "build": "rimraf dist && rollup -c rollup.config.js", "build:vendor": "node tasks/prepare.js", "build:models": "node demo/model.js",