Skip to content

Commit

Permalink
Merge pull request #3 from tappeddev/improve-browserstack-config-rts
Browse files Browse the repository at this point in the history
fix statements and upgrade runner
  • Loading branch information
stefanschaller authored Jan 15, 2024
2 parents 3cb73ee + e317f5e commit 2b05dc5
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ concurrency:
jobs:
analyze:
timeout-minutes: 5
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: kuhnroyal/flutter-fvm-config-action@v1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ class IntegrationTestAndroidOption with _$IntegrationTestAndroidOption {
}) = _IntegrationTestAndroidOption;

static Future<IntegrationTestAndroidOption> fromArguments(
List<String> arguments) async {
List<String> arguments,
) async {
final parser = ArgParser()
..addOption(IntegrationTestParameter.apkPathParam)
..addOption(IntegrationTestParameter.testSuitePathParam)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ class IntegrationTestIosOption with _$IntegrationTestIosOption {
}) = _IntegrationTestIosOption;

static Future<IntegrationTestIosOption> fromArguments(
List<String> arguments) async {
List<String> arguments,
) async {
final parser = ArgParser()
..addOption(IntegrationTestParameter.browserstackUserParam)
..addOption(IntegrationTestParameter.browserstackAccessKeyParam)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ import 'package:http/http.dart' as http;

class ProgressUpdateMultipartRequest extends http.MultipartRequest {
ProgressUpdateMultipartRequest(
String method,
Uri url, {
super.method,
super.url, {
required this.onProgress,
}) : super(method, url);
});

final void Function(int bytes, int totalBytes) onProgress;

Expand Down

0 comments on commit 2b05dc5

Please sign in to comment.