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
7ceb2041
Unverified
Commit
7ceb2041
authored
Nov 04, 2020
by
Jonah Williams
Committed by
GitHub
Nov 04, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
disable hot reload web tests on CI due to flakes (#69802)
parent
36ff0b2d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
hot_reload_web_test.dart
...ter_tools/test/integration.shard/hot_reload_web_test.dart
+3
-3
No files found.
packages/flutter_tools/test/integration.shard/hot_reload_web_test.dart
View file @
7ceb2041
...
@@ -30,7 +30,7 @@ void main() {
...
@@ -30,7 +30,7 @@ void main() {
testWithoutContext
(
'hot restart works without error'
,
()
async
{
testWithoutContext
(
'hot restart works without error'
,
()
async
{
await
flutter
.
run
(
chrome:
true
);
await
flutter
.
run
(
chrome:
true
);
await
flutter
.
hotRestart
();
await
flutter
.
hotRestart
();
},
skip:
platform
.
isMacOS
,
retry:
1
);
},
skip:
true
);
// TODO(jonahwilliams): https://github.com/flutter/flutter/issues/69804
testWithoutContext
(
'newly added code executes during hot restart'
,
()
async
{
testWithoutContext
(
'newly added code executes during hot restart'
,
()
async
{
final
Completer
<
void
>
completer
=
Completer
<
void
>();
final
Completer
<
void
>
completer
=
Completer
<
void
>();
...
@@ -48,7 +48,7 @@ void main() {
...
@@ -48,7 +48,7 @@ void main() {
}
finally
{
}
finally
{
await
subscription
.
cancel
();
await
subscription
.
cancel
();
}
}
},
skip:
platform
.
isMacOS
,
retry:
1
);
},
skip:
true
);
// TODO(jonahwilliams): https://github.com/flutter/flutter/issues/69804
testWithoutContext
(
'newly added code executes during hot restart - canvaskit'
,
()
async
{
testWithoutContext
(
'newly added code executes during hot restart - canvaskit'
,
()
async
{
final
Completer
<
void
>
completer
=
Completer
<
void
>();
final
Completer
<
void
>
completer
=
Completer
<
void
>();
...
@@ -66,5 +66,5 @@ void main() {
...
@@ -66,5 +66,5 @@ void main() {
}
finally
{
}
finally
{
await
subscription
.
cancel
();
await
subscription
.
cancel
();
}
}
},
skip:
true
,
retry:
1
);
// Currently broken: Expected a value of type 'Future<_RegisteredFont>', but got one of type '_Future<_RegisteredFont?>
},
skip:
true
);
// TODO(jonahwilliams): https://github.com/flutter/flutter/issues/69804
}
}
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