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
ff619621
Commit
ff619621
authored
Mar 27, 2017
by
Todd Volkert
Committed by
GitHub
Mar 27, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update devfs_test to use MemoryFileSystem (#8811)
parent
e271fa3e
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
70 additions
and
23 deletions
+70
-23
pubspec.yaml
packages/flutter_driver/pubspec.yaml
+1
-1
devfs.dart
packages/flutter_tools/lib/src/devfs.dart
+1
-1
pubspec.yaml
packages/flutter_tools/pubspec.yaml
+1
-1
devfs_test.dart
packages/flutter_tools/test/devfs_test.dart
+67
-20
No files found.
packages/flutter_driver/pubspec.yaml
View file @
ff619621
...
...
@@ -8,7 +8,7 @@ environment:
sdk
:
'
>=1.19.0
<2.0.0'
dependencies
:
file
:
2.3.
1
file
:
2.3.
2
json_rpc_2
:
'
^2.0.0'
matcher
:
'
>=0.12.0
<1.0.0'
meta
:
^1.0.4
...
...
packages/flutter_tools/lib/src/devfs.dart
View file @
ff619621
...
...
@@ -551,7 +551,7 @@ class DevFS {
for
(
String
packageName
in
packageMap
.
map
.
keys
)
{
final
Uri
packageUri
=
packageMap
.
map
[
packageName
];
final
String
packagePath
=
packageUri
.
toFilePath
(
);
final
String
packagePath
=
fs
.
path
.
fromUri
(
packageUri
);
final
Directory
packageDirectory
=
fs
.
directory
(
packageUri
);
Uri
directoryUriOnDevice
=
fs
.
path
.
toUri
(
fs
.
path
.
join
(
'packages'
,
packageName
)
+
fs
.
path
.
separator
);
bool
packageExists
;
...
...
packages/flutter_tools/pubspec.yaml
View file @
ff619621
...
...
@@ -12,7 +12,7 @@ dependencies:
args
:
^0.13.4
coverage
:
^0.8.0
crypto
:
'
>=1.1.1
<3.0.0'
file
:
2.3.
1
file
:
2.3.
2
http
:
^0.11.3+12
intl
:
'
>=0.14.0
<0.15.0'
json_rpc_2
:
^2.0.0
...
...
packages/flutter_tools/test/devfs_test.dart
View file @
ff619621
This diff is collapsed.
Click to expand it.
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