Skip to content

Commit

Permalink
more Safari fixes (#1951)
Browse files Browse the repository at this point in the history
* The GitHub instance is super slow, disable videos
  • Loading branch information
soulgalore authored Jul 16, 2023
1 parent 940fe58 commit 1856304
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/safari.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,15 +42,15 @@ jobs:
run: |
IPHONE14=$(xcrun xctrace list devices 2>&1 | grep -m 1 "iPhone 14 Simulator" | awk -F'[()]' '{print $4}')
xcrun simctl boot $IPHONE14
- name: Start local HTTP server
run: (npm run start-server&)
#- name: Start local HTTP server
# run: (npm run start-server&)
- name: Test Safari without video
run: ./bin/browsertime.js -b safari -n 1 http://127.0.0.1:3000/simple/
#- name: Test Safari iOS simulator
# run: |
# IPHONE14=$(xcrun xctrace list devices 2>&1 | grep -m 1 "iPhone 14 Simulator" | awk -F'[()]' '{print $4}')
# ./bin/browsertime.js -b safari -n 1 --safari.useSimulator --video --visualMetrics --safari.deviceUDID $IPHONE14 https://www.sitespeed.io/
- name: Test Safari with video and Visual Metrics
run: ./bin/browsertime.js -b safari -n 1 --viewPort 800x600 --video --visualMetrics http://127.0.0.1:3000/simple/
- name: Test Safari with video and Visual Metrics for multi pages
run: ./bin/browsertime.js -b safari -n 1 --viewPort 800x600 --video --visualMetrics test/data/navigationscript/multi.cjs
run: ./bin/browsertime.js -b safari -n 1 https://www.sitespeed.io/
- name: Test Safari iOS simulator
run: |
IPHONE14=$(xcrun xctrace list devices 2>&1 | grep -m 1 "iPhone 14 Simulator" | awk -F'[()]' '{print $4}')
./bin/browsertime.js -b safari -n 1 --safari.useSimulator --video --visualMetrics --safari.deviceUDID $IPHONE14 https://www.sitespeed.io/
#- name: Test Safari with video and Visual Metrics
# run: ./bin/browsertime.js -b safari -n 1 --viewPort 800x600 --video --visualMetrics https://www.sitespeed.io/
#- name: Test Safari with video and Visual Metrics for multi pages
# run: ./bin/browsertime.js -b safari -n 1 --viewPort 800x600 --video --visualMetrics test/data/navigationscript/multiMac.cjs
4 changes: 4 additions & 0 deletions test/data/navigationscript/multiMac.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
module.exports = async function (context, commands) {
await commands.measure.start('https://www.sitespeed.io');
return commands.measure.start('https://www.sitespeed.io/documentation/');
};

0 comments on commit 1856304

Please sign in to comment.