[pigeon] disable deprecated e2e tests (#860)

This commit is contained in:
gaaclarke
2022-02-16 13:55:07 -08:00
committed by GitHub
parent c96a7c396b
commit f0274261d6

View File

@ -275,13 +275,15 @@ run_ios_e2e_tests() {
pushd $PWD pushd $PWD
cd e2e_tests/test_objc cd e2e_tests/test_objc
flutter build ios -t test_driver/e2e_test.dart --simulator flutter build ios -t test_driver/e2e_test.dart --simulator
cd ios # TODO(gaaclarke): Transition to integration_test. `e2e` has been deprecated
xcodebuild \ # and has stopped working.
-workspace Runner.xcworkspace \ # cd ios
-scheme RunnerTests \ # xcodebuild \
-sdk iphonesimulator \ # -workspace Runner.xcworkspace \
-destination 'platform=iOS Simulator,name=iPhone 8' \ # -scheme RunnerTests \
test # -sdk iphonesimulator \
# -destination 'platform=iOS Simulator,name=iPhone 8' \
# test
popd popd
} }