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
e8eb8764
Unverified
Commit
e8eb8764
authored
Jul 15, 2020
by
Danny Tuppeny
Committed by
GitHub
Jul 15, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix build (fix references to _flutter -> flutter) (#61568)
parent
a1d4d1b1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
hot_reload_test.dart
...flutter_tools/test/integration.shard/hot_reload_test.dart
+3
-3
No files found.
packages/flutter_tools/test/integration.shard/hot_reload_test.dart
View file @
e8eb8764
...
...
@@ -37,10 +37,10 @@ void main() {
});
test
(
'multiple overlapping hot reload are debounced and queued'
,
()
async
{
await
_
flutter
.
run
();
await
flutter
.
run
();
// Capture how many *real* hot reloads occur.
int
numReloads
=
0
;
final
StreamSubscription
<
void
>
subscription
=
_
flutter
.
stdout
final
StreamSubscription
<
void
>
subscription
=
flutter
.
stdout
.
map
(
parseFlutterResponse
)
.
where
(
_isHotReloadCompletionEvent
)
.
listen
((
_
)
=>
numReloads
++);
...
...
@@ -52,7 +52,7 @@ void main() {
const
Duration
delay
=
Duration
(
milliseconds:
hotReloadDebounceOverrideMs
*
2
);
Future
<
void
>
doReload
([
void
_
])
=>
_
flutter
.
hotReload
(
debounce:
true
,
debounceDurationOverrideMs:
hotReloadDebounceOverrideMs
);
flutter
.
hotReload
(
debounce:
true
,
debounceDurationOverrideMs:
hotReloadDebounceOverrideMs
);
try
{
await
Future
.
wait
<
void
>(<
Future
<
void
>>[
...
...
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