Skip to content

Commit

Permalink
Create flutter_test_config.dart
Browse files Browse the repository at this point in the history
  • Loading branch information
Daviiddoo committed Jun 18, 2024
1 parent 2b9f10b commit c43350e
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions forui/test/src/widgets/tabs/flutter_test_config.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import 'dart:async';

import '../../flutter_test_config.dart';

const _kGoldenTestsThreshold = 7 / 100;

Future<void> testExecutable(FutureOr<void> Function() testMain) async {
await configureGoldenTests(_kGoldenTestsThreshold);
await testMain();
}

0 comments on commit c43350e

Please sign in to comment.