Unverified Commit 587b6223 authored by Lau Ching Jun's avatar Lau Ching Jun Committed by GitHub

Fuchsia device is ephemeral. (#53717)

parent 7e97ca60
......@@ -190,7 +190,7 @@ class FuchsiaDevice extends Device {
id,
platformType: PlatformType.fuchsia,
category: null,
ephemeral: false,
ephemeral: true,
);
@override
......
......@@ -97,6 +97,11 @@ void main() {
ProcessManager: () => FakeProcessManager.any(),
});
test('is ephemeral', () {
final FuchsiaDevice device = FuchsiaDevice('123');
expect(device.ephemeral, true);
});
testUsingContext('supported for project', () async {
final FuchsiaDevice device = FuchsiaDevice('123');
globals.fs.directory('fuchsia').createSync(recursive: true);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment