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 committed Dec 19, 2024
1 parent 402b7fe commit 1fa5490
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 1fa5490

Please sign in to comment.