Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
a1cd3f45
Unverified
Commit
a1cd3f45
authored
Aug 25, 2021
by
Darren Austin
Committed by
GitHub
Aug 25, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated some skip test comments that were missed in the audit. (#88893)
parent
884dfc26
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
12 additions
and
7 deletions
+12
-7
transitions_perf_test.dart
...ts/flutter_gallery/test_driver/transitions_perf_test.dart
+4
-1
isolates_test.dart
packages/flutter/test/foundation/isolates_test.dart
+1
-1
text_field_test.dart
packages/flutter/test/material/text_field_test.dart
+4
-1
editable_test.dart
packages/flutter/test/rendering/editable_test.dart
+1
-2
editable_text_test.dart
packages/flutter/test/widgets/editable_text_test.dart
+2
-2
No files found.
dev/integration_tests/flutter_gallery/test_driver/transitions_perf_test.dart
View file @
a1cd3f45
...
...
@@ -180,7 +180,10 @@ void main([List<String> args = const <String>[]]) {
// Assert that we can use semantics related finders in profile mode.
final
int
id
=
await
driver
.
getSemanticsId
(
find
.
bySemanticsLabel
(
'Material'
));
expect
(
id
,
greaterThan
(-
1
));
},
skip:
!
withSemantics
,
timeout:
Timeout
.
none
);
},
skip:
!
withSemantics
,
// [intended] test only makes sense when semantics are turned on.
timeout:
Timeout
.
none
,
);
test
(
'all demos'
,
()
async
{
// Collect timeline data for just a limited set of demos to avoid OOMs.
...
...
packages/flutter/test/foundation/isolates_test.dart
View file @
a1cd3f45
...
...
@@ -32,7 +32,7 @@ void main() {
expect
(
await
compute
(
test1Async
,
0
),
1
);
expect
(
compute
(
test2Async
,
0
),
throwsException
);
},
skip:
kIsWeb
);
},
skip:
kIsWeb
);
// [intended] isn't supported on the web.
test
(
'compute closes all ports'
,
()
async
{
// Run a Dart script that calls compute().
...
...
packages/flutter/test/material/text_field_test.dart
View file @
a1cd3f45
...
...
@@ -5203,7 +5203,10 @@ void main() {
const
String
expected
=
' housa bige jumped over a mouse'
;
expect
(
find
.
text
(
expected
),
findsOneWidget
);
},
skip:
areKeyEventsHandledByPlatform
,
variant:
KeySimulatorTransitModeVariant
.
all
());
},
skip:
areKeyEventsHandledByPlatform
,
// [intended] only applies to platforms where we handle key events.
variant:
KeySimulatorTransitModeVariant
.
all
()
);
testWidgets
(
'Select all test'
,
(
WidgetTester
tester
)
async
{
final
FocusNode
focusNode
=
FocusNode
();
...
...
packages/flutter/test/rendering/editable_test.dart
View file @
a1cd3f45
...
...
@@ -367,8 +367,7 @@ void main() {
// TODO(yjbanov): ahem.ttf doesn't have Chinese glyphs, making this test
// sensitive to browser/OS when running in web mode:
// https://github.com/flutter/flutter/issues/83129
},
skip:
kIsWeb
);
},
skip:
kIsWeb
);
// https://github.com/flutter/flutter/issues/83129
test
(
'text is painted above selection'
,
()
{
final
TextSelectionDelegate
delegate
=
FakeEditableTextState
();
...
...
packages/flutter/test/widgets/editable_text_test.dart
View file @
a1cd3f45
...
...
@@ -5261,7 +5261,7 @@ void main() {
);
expect
(
controller
.
text
,
equals
(
testText
),
reason:
'on
$platform
'
);
},
skip:
kIsWeb
,
skip:
kIsWeb
,
// [intended] on web these keys are handled by the browser.
variant:
TargetPlatformVariant
.
all
(),
);
...
...
@@ -5404,7 +5404,7 @@ void main() {
);
expect
(
controller
.
text
,
equals
(
testText
),
reason:
'on
$platform
'
);
},
skip:
kIsWeb
,
skip:
kIsWeb
,
// [intended] on web these keys are handled by the browser.
variant:
TargetPlatformVariant
.
all
(),
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment