Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -75,12 +75,7 @@ Future<void> _runBenchmarks({bool useWasm = false}) async {

for (final devToolsBenchmark in DevToolsBenchmark.values) {
final benchmarkName = devToolsBenchmark.id;
// Note: Due to https://github.com/flutter/flutter/pull/175392 there is no
// longer any difference in benchmark events for skwasm vs. canvaskit.
//
// TODO(https://github.com/flutter/flutter/issues/177057): Remove hardcoded
// useWasm: false param when package:web_benchmarks is updated.
final expectedMetrics = expectedBenchmarkMetrics(useWasm: false);
final expectedMetrics = expectedBenchmarkMetrics();
const expectedComputations = BenchmarkMetricComputation.values;
final scores = taskResult.scores[benchmarkName] ?? [];
expect(
Expand Down
2 changes: 1 addition & 1 deletion packages/devtools_app/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ dev_dependencies:
stager: ^1.3.0
stream_channel: ^2.1.1
test: ^1.21.0
web_benchmarks: ^4.0.0
web_benchmarks: ^4.1.0
webkit_inspection_protocol: ">=0.5.0 <2.0.0"

flutter:
Expand Down
Loading