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
07030968
Unverified
Commit
07030968
authored
Mar 24, 2022
by
Zachary Anderson
Committed by
GitHub
Mar 24, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Skip Video demo in integration tests of flutter_gallery (#100666)
parent
19680c34
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
5 deletions
+12
-5
run_demos.dart
...egration_tests/flutter_gallery/test_driver/run_demos.dart
+3
-4
transitions_perf_test.dart
...ts/flutter_gallery/test_driver/transitions_perf_test.dart
+9
-1
No files found.
dev/integration_tests/flutter_gallery/test_driver/run_demos.dart
View file @
07030968
...
...
@@ -3,7 +3,6 @@
// found in the LICENSE file.
import
'package:flutter/cupertino.dart'
;
import
'package:flutter/foundation.dart'
;
import
'package:flutter_gallery/demo_lists.dart'
;
import
'package:flutter_test/flutter_test.dart'
;
...
...
@@ -12,9 +11,9 @@ import 'package:flutter_test/flutter_test.dart';
/// Demo names are formatted as 'DEMO_NAME@DEMO_CATEGORY' (see
/// `demo_lists.dart` for more examples).
final
List
<
String
>
kSkippedDemos
=
<
String
>[
// Th
e CI uses Chromium, which lacks the video codecs to run this demo
.
if
(
kIsWeb
)
'Video@Media'
,
// Th
is demo is flaky on CI due to hitting the network
.
// See: https://github.com/flutter/flutter/issues/100497
'Video@Media'
,
];
/// Scrolls each demo menu item into view, launches it, then returns to the
...
...
dev/integration_tests/flutter_gallery/test_driver/transitions_perf_test.dart
View file @
07030968
...
...
@@ -13,7 +13,15 @@ import 'package:test/test.dart' hide TypeMatcher, isInstanceOf;
const
FileSystem
_fs
=
LocalFileSystem
();
const
List
<
String
>
kSkippedDemos
=
<
String
>[];
/// The demos we don't run as part of the integration test.
///
/// Demo names are formatted as 'DEMO_NAME@DEMO_CATEGORY' (see
/// `demo_lists.dart` for more examples).
const
List
<
String
>
kSkippedDemos
=
<
String
>[
// This demo is flaky on CI due to hitting the network.
// See: https://github.com/flutter/flutter/issues/100497
'Video@Media'
,
];
// All of the gallery demos, identified as "title@category".
//
...
...
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