Skip to content

Commit

Permalink
Adjust list of ignorable Web IDL anomalies
Browse files Browse the repository at this point in the history
Bumping the version of Strudy brings new Web IDL anomaly types:
- `noEvent` needs events data that is not included in the data we pass to the
study function. It must be ignored.
- `urlType` is new and we probably don't want to block curation because of it,
at least for now (or we're going to have a lot of patching to do...)
  • Loading branch information
tidoust authored and dontcallmedom committed Jan 7, 2025
1 parent e595264 commit 0c4843b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/idl/consistency.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@ const ignorableAnomalies = [
'incompatiblePartialIdlExposure',
'singleEnumValue',
'unexpectedEventHandler',
'wrongCaseEnumValue'
'wrongCaseEnumValue',
'noEvent',
'urlType'
];


Expand Down

0 comments on commit 0c4843b

Please sign in to comment.