Skip to content

Commit

Permalink
Merge pull request #1 from tappeddev/improve-browserstack-config-rts
Browse files Browse the repository at this point in the history
improve-browserstack-config-rts -> Bump versions
  • Loading branch information
stefanschaller authored Jan 15, 2024
2 parents 53ca155 + dbc0214 commit 3cb73ee
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .fvm/flutter_sdk
2 changes: 1 addition & 1 deletion .fvm/fvm_config.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"flutterSdkVersion": "3.13.8",
"flutterSdkVersion": "3.16.5",
"flavors": {}
}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,4 @@ migrate_working_dir/
.dart_tool/
.packages
build/
/.fvm/flutter_sdk/
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This repository contains utilities for testing.

## Browserstack integration

You are able to upload and run intergration tests by using `run_android_intergration_test.dart` and `run_ios_integration_test.dart`. This tools communicate with the browserstack api and therefore require a browserstack username and access key.
You are able to upload and run integration tests by using `run_android_intergration_test.dart` and `run_ios_integration_test.dart`. This tools communicate with the browserstack api and therefore require a browserstack username and access key.

Before running the scripts make sure that you setup your android and iOS projects to be able to generate integration test builds.
Steps can be found here: https://www.browserstack.com/docs/app-automate/flutter/getting-started
Expand Down Expand Up @@ -54,7 +54,7 @@ popd
fvm dart run lib/ios_tests.dart --user="$BROWSERSTACK_USERNAME" --accessKey="$BROWSERSTACK_ACCESS_KEY" --path="../app/$IOS_INTEGRATION_PRODUCT/ios_tests.zip"
```
android_ios.dart:
ios_tests.dart:
```dart
import 'package:tapped_test_toolkit/tapped_test_toolkit.dart';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ class _$IntegrationTestAndroidOptionImpl extends _IntegrationTestAndroidOption {
}

@override
bool operator ==(dynamic other) {
bool operator ==(Object other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is _$IntegrationTestAndroidOptionImpl &&
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ class _$IntegrationTestIosOptionImpl extends _IntegrationTestIosOption {
}

@override
bool operator ==(dynamic other) {
bool operator ==(Object other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is _$IntegrationTestIosOptionImpl &&
Expand Down
20 changes: 10 additions & 10 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,21 @@ publish_to: none

environment:
sdk: ">=2.18.4 <3.0.0"
flutter: ">=1.17.0"
flutter: ">=3.16.0"

dependencies:
args: ^2.4.0
http: ^0.13.5
freezed_annotation: ^2.2.0
json_annotation: ^4.8.0
path: ^1.8.3
args: ^2.4.2
http: ^1.1.2
freezed_annotation: ^2.4.1
json_annotation: ^4.8.1
path: ^1.9.0
# formatting the time of some jobs
intl: ^0.17.0
intl: ^0.18.1

dev_dependencies:
build_runner: ^2.3.3
flutter_lints: ^2.0.1
freezed: ^2.3.2
build_runner: ^2.4.7
flutter_lints: ^3.0.1
freezed: ^2.4.6
tapped_lints:
git:
url: https://github.com/tappeddev/tapped_lints.git
Expand Down

0 comments on commit 3cb73ee

Please sign in to comment.