Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,14 @@ import '../test_tools_goldens.dart';

void main() {
group('SuperTextField', () {
testGoldensOnAndroid('displays toolbar pointing down for expanded selection', (tester) async {
testGoldensOniOS('displays toolbar pointing down for expanded selection', (tester) async {
// Pumps a widget tree with a SuperTextField at the bottom of the screen.
await _pumpSuperTextfieldToolbarTestApp(
tester,
child: Positioned(
bottom: 50,
child: _buildSuperTextField(
text: 'Arrow pointing down',
configuration: SuperTextFieldPlatformConfiguration.iOS,
),
),
);
Expand Down Expand Up @@ -57,13 +56,12 @@ void main() {
);
});

testGoldensOnAndroid('displays toolbar pointing up for expanded selection', (tester) async {
testGoldensOniOS('displays toolbar pointing up for expanded selection', (tester) async {
// Pumps a widget tree with a SuperTextField at the top of the screen.
await _pumpSuperTextfieldToolbarTestApp(
tester,
child: _buildSuperTextField(
text: 'Arrow pointing up',
configuration: SuperTextFieldPlatformConfiguration.iOS,
),
);

Expand Down