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
aa04a056
Unverified
Commit
aa04a056
authored
Feb 26, 2018
by
Jason Simmons
Committed by
GitHub
Feb 26, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Disable a text field test that fails on some Macs with libtxt (#14895)
parent
eaa9b47a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
text_field_test.dart
packages/flutter/test/material/text_field_test.dart
+2
-2
text_painter_rtl_test.dart
packages/flutter/test/painting/text_painter_rtl_test.dart
+2
-2
paragraph_test.dart
packages/flutter/test/rendering/paragraph_test.dart
+2
-2
No files found.
packages/flutter/test/material/text_field_test.dart
View file @
aa04a056
...
...
@@ -737,8 +737,8 @@ void main() {
expect
(
inputBox
.
hitTest
(
new
HitTestResult
(),
position:
inputBox
.
globalToLocal
(
newFirstPos
)),
isTrue
);
expect
(
inputBox
.
hitTest
(
new
HitTestResult
(),
position:
inputBox
.
globalToLocal
(
newFourthPos
)),
isFalse
);
},
// This test
does not run as expected in the MacOS environment on Travis
skip:
runningOnTravis
&&
Platform
.
isMacOS
);
// This test
fails on some Mac environments when libtxt is enabled.
skip:
Platform
.
isMacOS
);
testWidgets
(
'TextField smoke test'
,
(
WidgetTester
tester
)
async
{
String
textFieldValue
;
...
...
packages/flutter/test/painting/text_painter_rtl_test.dart
View file @
aa04a056
...
...
@@ -320,8 +320,8 @@ void main() {
],
);
},
// Ahem-based tests don't yet quite work on Windows or
the MacOS environment in Travi
s
skip:
Platform
.
isWindows
||
(
runningOnTravis
&&
Platform
.
isMacOS
)
);
// Ahem-based tests don't yet quite work on Windows or
some MacOS environment
s
skip:
Platform
.
isWindows
||
Platform
.
isMacOS
);
test
(
'TextPainter - line wrap mid-word'
,
()
{
final
TextPainter
painter
=
new
TextPainter
()
...
...
packages/flutter/test/rendering/paragraph_test.dart
View file @
aa04a056
...
...
@@ -70,8 +70,8 @@ void main() {
expect
(
boxes
.
any
((
ui
.
TextBox
box
)
=>
box
.
left
==
250
&&
box
.
top
==
0
),
isTrue
);
expect
(
boxes
.
any
((
ui
.
TextBox
box
)
=>
box
.
right
==
100
&&
box
.
top
==
10
),
isTrue
);
},
// Ahem-based tests don't yet quite work on Windows or
the MacOS environment in Travi
s
skip:
Platform
.
isWindows
||
(
runningOnTravis
&&
Platform
.
isMacOS
)
);
// Ahem-based tests don't yet quite work on Windows or
some MacOS environment
s
skip:
Platform
.
isWindows
||
Platform
.
isMacOS
);
test
(
'getWordBoundary control test'
,
()
{
final
RenderParagraph
paragraph
=
new
RenderParagraph
(
...
...
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