| Index: lib/src/backend/test_platform.dart
|
| diff --git a/lib/src/backend/test_platform.dart b/lib/src/backend/test_platform.dart
|
| index d311d69296dd621d311454de561ef8bc2b69a230..fef5a62491c0d73a900fb54f269eb033ef689b98 100644
|
| --- a/lib/src/backend/test_platform.dart
|
| +++ b/lib/src/backend/test_platform.dart
|
| @@ -40,9 +40,22 @@ class TestPlatform {
|
| static const TestPlatform safari = const TestPlatform._("Safari", "safari",
|
| isBrowser: true, isJS: true);
|
|
|
| + /// Microsoft Internet Explorer.
|
| + static const TestPlatform internetExplorer = const TestPlatform._(
|
| + "Internet Explorer", "ie",
|
| + isBrowser: true, isJS: true);
|
| +
|
| /// A list of all instances of [TestPlatform].
|
| - static const List<TestPlatform> all =
|
| - const [vm, dartium, contentShell, chrome, phantomJS, firefox, safari];
|
| + static const List<TestPlatform> all = const [
|
| + vm,
|
| + dartium,
|
| + contentShell,
|
| + chrome,
|
| + phantomJS,
|
| + firefox,
|
| + safari,
|
| + internetExplorer
|
| + ];
|
|
|
| /// Finds a platform by its identifier string.
|
| ///
|
|
|