Skip to content
Closed
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
2 changes: 1 addition & 1 deletion lib/wpt/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@
const found = [];
for (const mod of supported) {
const idl = `${mod}.idl`;
const asset = assets.find(asset => asset.name === idl);
const asset = assets.find(asset => asset.name.toLowerCase() === idl.toLowerCase());

Check warning on line 225 in lib/wpt/index.js

View check run for this annotation

Codecov / codecov/patch

lib/wpt/index.js#L225

Added line #L225 was not covered by tests
if (asset) {
found.push(asset);
} else {
Expand Down
Loading