Skip to content

Commit

Permalink
Ensure browsertime gets treated as a perf test (#6951)
Browse files Browse the repository at this point in the history
  • Loading branch information
gmierz authored Jan 11, 2021
1 parent b52cac7 commit ec3679a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ui/helpers/job.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ export const isPerfTest = function isPerfTest(job) {
return [job.job_group_name, job.job_type_name].some(
(name) =>
name.toLowerCase().includes('talos') ||
name.toLowerCase().includes('raptor'),
name.toLowerCase().includes('raptor') ||
name.toLowerCase().includes('browsertime'),
);
};

Expand Down

0 comments on commit ec3679a

Please sign in to comment.