Skip to content

Commit

Permalink
Ignore failing color conversion tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
Comandeer committed May 24, 2021
1 parent f72f2e4 commit 8b18fc3
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions tests/core/tools/color/conversion.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,16 @@
'use strict';

bender.test( {
// Ignored due to #4717.
_should: {
ignore: {
'test converting 8-HEX to 4-HEX': true,
'test converting 8-HEX-like to 4-HEX': true,
'test not converting 8-HEX to 4-HEX when it is not possible': true,
'test not converting 8-HEX-like to 4-HEX when it is not possible': true
}
},

'test color from 6-HEX lower-case string returns 6-HEX': colorTools.testColorConversion( '#ffffff', '#FFFFFF', 'getHex' ),

'test color from 3-HEX lower-case string returns 6-HEX': colorTools.testColorConversion( '#fff', '#FFFFFF', 'getHex' ),
Expand Down

0 comments on commit 8b18fc3

Please sign in to comment.