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
fceaa005
Unverified
Commit
fceaa005
authored
Jul 31, 2023
by
Daco Harkes
Committed by
GitHub
Jul 31, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[doc] Fix module_test_ios comments (#131470)
parent
c05c3d39
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
module_test_ios.dart
dev/devicelab/bin/tasks/module_test_ios.dart
+3
-3
No files found.
dev/devicelab/bin/tasks/module_test_ios.dart
View file @
fceaa005
...
@@ -27,8 +27,8 @@ Future<void> main() async {
...
@@ -27,8 +27,8 @@ Future<void> main() async {
},
},
);
);
//
t
his variable cannot be `late`, as we reference it in the `finally` block
//
T
his variable cannot be `late`, as we reference it in the `finally` block
// which may execute before this field has been initialized
// which may execute before this field has been initialized
.
String
?
simulatorDeviceId
;
String
?
simulatorDeviceId
;
section
(
'Create Flutter module project'
);
section
(
'Create Flutter module project'
);
...
@@ -51,7 +51,7 @@ Future<void> main() async {
...
@@ -51,7 +51,7 @@ Future<void> main() async {
final
Directory
flutterModuleLibSource
=
Directory
(
path
.
join
(
flutterDirectory
.
path
,
'dev'
,
'integration_tests'
,
'ios_host_app'
,
'flutterapp'
,
'lib'
));
final
Directory
flutterModuleLibSource
=
Directory
(
path
.
join
(
flutterDirectory
.
path
,
'dev'
,
'integration_tests'
,
'ios_host_app'
,
'flutterapp'
,
'lib'
));
final
Directory
flutterModuleLibDestination
=
Directory
(
path
.
join
(
projectDir
.
path
,
'lib'
));
final
Directory
flutterModuleLibDestination
=
Directory
(
path
.
join
(
projectDir
.
path
,
'lib'
));
// These test files don't have a .dart
prefix
so the analyzer will ignore them. They aren't in a
// These test files don't have a .dart
extension
so the analyzer will ignore them. They aren't in a
// package and don't work on their own outside of the test module just created.
// package and don't work on their own outside of the test module just created.
final
File
main
=
File
(
path
.
join
(
flutterModuleLibSource
.
path
,
'main'
));
final
File
main
=
File
(
path
.
join
(
flutterModuleLibSource
.
path
,
'main'
));
main
.
copySync
(
path
.
join
(
flutterModuleLibDestination
.
path
,
'main.dart'
));
main
.
copySync
(
path
.
join
(
flutterModuleLibDestination
.
path
,
'main.dart'
));
...
...
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