| Index: lib/src/backend/test_platform.dart
|
| diff --git a/lib/src/backend/test_platform.dart b/lib/src/backend/test_platform.dart
|
| index cc471606f233d34943233f93dc2cd3f1ab038e9e..881dcf4aa27e52b176181671947f259e9799faa7 100644
|
| --- a/lib/src/backend/test_platform.dart
|
| +++ b/lib/src/backend/test_platform.dart
|
| @@ -18,6 +18,11 @@ class TestPlatform {
|
| static const TestPlatform dartium = const TestPlatform._("Dartium", "dartium",
|
| isBrowser: true, isBlink: true);
|
|
|
| + /// Dartium content shell.
|
| + static const TestPlatform contentShell = const TestPlatform._(
|
| + "Dartium Content Shell", "content-shell",
|
| + isBrowser: true, isBlink: true);
|
| +
|
| /// Google Chrome.
|
| static const TestPlatform chrome = const TestPlatform._("Chrome", "chrome",
|
| isBrowser: true, isJS: true, isBlink: true);
|
| @@ -27,7 +32,8 @@ class TestPlatform {
|
| isBrowser: true, isJS: true);
|
|
|
| /// A list of all instances of [TestPlatform].
|
| - static const List<TestPlatform> all = const [vm, dartium, chrome, firefox];
|
| + static const List<TestPlatform> all =
|
| + const [vm, dartium, contentShell, chrome, firefox];
|
|
|
| /// Finds a platform by its identifier string.
|
| ///
|
|
|