Skip to content

Commit

Permalink
Remove Internet Explorer from test framework (Leaflet#8264)
Browse files Browse the repository at this point in the history
* Remove Internet Explorer from CI

* Remove Internet Explorer from Karma config

(cherry picked from commit e4c8f64)
  • Loading branch information
jonkoops authored and m.elizarov committed Jan 24, 2023
1 parent a55d60d commit eada967
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 41 deletions.
16 changes: 3 additions & 13 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,7 @@ env:
NODE_VERSION: 16
jobs:
setup:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-2019]
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
Expand Down Expand Up @@ -40,10 +37,7 @@ jobs:

build:
needs: setup
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-2019]
runs-on: ubuntu-latest
steps:
- name: Restore setup
uses: actions/cache@v3
Expand Down Expand Up @@ -135,18 +129,14 @@ jobs:

test:
needs: build
runs-on: ${{ matrix.os || 'ubuntu-latest' }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- browser: Chrome1280x1024
- browser: FirefoxTouch
- browser: FirefoxNoTouch
- browser: IE
os: windows-2019
- browser: IE10
os: windows-2019
steps:
- name: Restore build
uses: actions/cache@v3
Expand Down
22 changes: 0 additions & 22 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
"karma-edge-launcher": "^0.4.2",
"karma-expect": "^1.1.3",
"karma-firefox-launcher": "^2.1.2",
"karma-ie-launcher": "^1.0.0",
"karma-mocha": "^2.0.1",
"karma-rollup-preprocessor": "^7.0.8",
"karma-safari-launcher": "~1.0.0",
Expand Down
5 changes: 0 additions & 5 deletions spec/karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ module.exports = function (config) {
'karma-sinon',
'karma-expect',
'karma-edge-launcher',
'karma-ie-launcher',
'karma-chrome-launcher',
'karma-safari-launcher',
'karma-firefox-launcher'],
Expand Down Expand Up @@ -114,10 +113,6 @@ module.exports = function (config) {
'dom.w3c_touch_events.enabled': 0
}
},
IE10: {
base: 'IE',
'x-ua-compatible': 'IE=EmulateIE10'
}
},

concurrency: 1,
Expand Down

0 comments on commit eada967

Please sign in to comment.