Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Fix test
  • Loading branch information
avelad committed Oct 23, 2024
commit 6925a7088bfa3324a0ae2b703e28922376e2e57e
3 changes: 2 additions & 1 deletion test/ui/ui_unit.js
Original file line number Diff line number Diff line change
Expand Up @@ -853,7 +853,8 @@ describe('UI', () => {
it('displays all the available statistics', () => {
const skippedStats = ['stateHistory', 'switchHistory'];
const nodes = statisticsContainer.childNodes;
let nodeIndex = 0;
// First index is close button.
let nodeIndex = 1;

for (const statistic in new shaka.util.Stats().getBlob()) {
if (!skippedStats.includes(statistic)) {
Expand Down