From e429e0443adf5c7ca3041b97a8157b8911302206 Mon Sep 17 00:00:00 2001 From: Niklas von Hertzen Date: Mon, 9 Aug 2021 17:15:00 +0800 Subject: [PATCH] ci: add ios15 target (#2564) --- .github/workflows/ci.yml | 4 ++++ karma.conf.js | 6 ++++++ 2 files changed, 10 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bc07712..2e5126f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -113,6 +113,10 @@ jobs: name: iOS Simulator Safari 14 targetBrowser: Safari_IOS_14 xcode: /Applications/Xcode_12_beta.app + - os: macos-11 + name: iOS Simulator Safari 15 + targetBrowser: Safari_IOS_15 + xcode: /Applications/Xcode_13.0.app - os: windows-latest name: Windows Internet Explorer 9 (Emulated) targetBrowser: IE_9 diff --git a/karma.conf.js b/karma.conf.js index 8ed4e16..4c2d176 100644 --- a/karma.conf.js +++ b/karma.conf.js @@ -42,6 +42,12 @@ module.exports = function(config) { platform: 'iOS', sdk: '14.0' }, + Safari_IOS_15: { + base: 'MobileSafari', + name: 'iPhone 8', + platform: 'iOS', + sdk: '15.0' + }, SauceLabs_IE9: { base: 'SauceLabs', browserName: 'internet explorer',