From fb2327736771833b089e1d00b8a96592714f3d22 Mon Sep 17 00:00:00 2001 From: Steve Gravrock Date: Wed, 1 Jul 2020 12:30:24 -0700 Subject: [PATCH] Removed IE from Travis build matrix We still support IE 10 and 11, but the Node selenium-webdriver has serious problems with it. Until that's fixed or worked around, IE builds won't pass. This gets us otherwise green so we can easily see if anything else is broken. --- .travis.yml | 8 -------- README.md | 15 ++++++++++++++- 2 files changed, 14 insertions(+), 9 deletions(-) diff --git a/.travis.yml b/.travis.yml index 3a2cb0db..bfeccecd 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,14 +19,6 @@ env: matrix: include: - - env: JASMINE_BROWSER="internet explorer" SAUCE_BROWSER_VERSION=11 SAUCE_OS="Windows 8.1" - if: type != pull_request - addons: - sauce_connect: true - - env: JASMINE_BROWSER="internet explorer" SAUCE_BROWSER_VERSION=10 SAUCE_OS="Windows 8" - if: type != pull_request - addons: - sauce_connect: true - env: JASMINE_BROWSER="firefox" SAUCE_BROWSER_VERSION='' SAUCE_OS="Windows 10" if: type != pull_request addons: diff --git a/README.md b/README.md index 94ee7162..e8b7fd53 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,20 @@ Add the following to your HTML file: ## Supported environments -Jasmine tests itself across many browsers (Safari, Chrome, Firefox, Microsoft Edge, and new Internet Explorer) as well as nodejs. To see the exact version tests are run against look at our [.travis.yml](https://github.com/jasmine/jasmine/blob/main/.travis.yml). +Jasmine tests itself across many browsers (Safari, Chrome, Firefox, Microsoft Edge, and Internet Explorer) as well as nodejs. + +| Environment | Supported versions | +|-------------------|--------------------| +| Node | 8, 10, 12 | +| Safari | 8-13 | +| Chrome | Evergreen | +| Firefox | Evergreen, 68 | +| Edge | Evergreen | +| Internet Explorer | 10, 11 | + +For evergreen browsers, each version of Jasmine is tested against the version of the browser that is available to us +at the time of release. Other browsers, as well as older & newer versions of some supported browsers, are likely to work. +However, Jasmine isn't tested against them and they aren't actively supported. ## Support