Skip to content
This repository has been archived by the owner on Jun 13, 2024. It is now read-only.

Commit

Permalink
Disable benchmarks test (#464)
Browse files Browse the repository at this point in the history
* Disable benchmarks test

* Don't use MaterialIcons codepoints directly
  • Loading branch information
guidezpl authored Mar 25, 2021
1 parent 4bd1b86 commit 3fc3d3b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 12 deletions.
15 changes: 3 additions & 12 deletions lib/data/icons.dart
Original file line number Diff line number Diff line change
Expand Up @@ -167,16 +167,7 @@ class GalleryIcons {
0xe927,
fontFamily: 'GalleryIcons',
);
static const IconData navigationRail = IconData(
60080,
fontFamily: 'MaterialIcons',
);
static const IconData appbar = IconData(
60134,
fontFamily: 'MaterialIcons',
);
static const IconData divider = IconData(
0xe8f0,
fontFamily: 'MaterialIcons',
);
static const IconData navigationRail = Icons.vertical_split;
static const IconData appbar = Icons.web_asset;
static const IconData divider = Icons.credit_card;
}
3 changes: 3 additions & 0 deletions test/benchmarks_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ Future<void> main() async {
test('Can run a web benchmark', () async {
print('Starting web benchmark tests ...');

// TODO: re-enable this test (https://github.com/flutter/gallery/issues/463)
return;
// ignore: dead_code
final taskResult = await serveWebBenchmark(
benchmarkAppDirectory: projectRootDirectory(),
entryPoint: 'test/benchmarks/client.dart',
Expand Down

0 comments on commit 3fc3d3b

Please sign in to comment.