Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
test mathjax using firefox v82 and latest
  • Loading branch information
archmoj committed Oct 19, 2021
commit 4253453fa3834a91ebbb15820d62f7ebeeda28f1
43 changes: 43 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,43 @@ jobs:
name: Test MathJax on firefox-81
command: .circleci/test.sh mathjax-firefox

mathjax-firefox82:
docker:
# need '-browsers' version to test in real (xvfb-wrapped) browsers
- image: cimg/node:16.8.0-browsers
environment:
# Alaska time (arbitrary timezone to test date logic)
TZ: "America/Anchorage"
working_directory: ~/plotly.js
steps:
- browser-tools/install-browser-tools: &browser-versions
firefox-version: '82.0'
install-chrome: false
install-chromedriver: false
- attach_workspace:
at: ~/
- run:
name: Test MathJax on firefox-81
command: .circleci/test.sh mathjax-firefox

mathjax-firefoxLatest:
docker:
# need '-browsers' version to test in real (xvfb-wrapped) browsers
- image: cimg/node:16.8.0-browsers
environment:
# Alaska time (arbitrary timezone to test date logic)
TZ: "America/Anchorage"
working_directory: ~/plotly.js
steps:
- browser-tools/install-browser-tools: &browser-versions
install-chrome: false
install-chromedriver: false
- attach_workspace:
at: ~/
- run:
name: Test MathJax on firefox-81
command: .circleci/test.sh mathjax-firefox

make-baselines:
parallelism: 4
docker:
Expand Down Expand Up @@ -343,6 +380,12 @@ workflows:
- mathjax-firefox81:
requires:
- install-and-cibuild
- mathjax-firefox82:
requires:
- install-and-cibuild
- mathjax-firefoxLatest:
requires:
- install-and-cibuild
- no-gl-jasmine:
requires:
- install-and-cibuild
Expand Down