Skip to content

Commit

Permalink
test: change attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
zzxming committed Apr 30, 2024
1 parent 5c8bc84 commit 09d0005
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion packages/quill/test/fuzz/editor.spec.ts
Expand Up @@ -18,7 +18,15 @@ const attributeDefs: {
blockEmbed: AttributeDef[];
} = {
text: [
{ name: 'color', values: ['#ffffff', '#000000', '#ff0000', '#ffff00'] },
{
name: 'color',
values: [
'rgb(255, 255, 255)',
'rgb(0, 0, 0)',
'rgb(255, 0, 0)',
'rgb(255, 255, 0)',
],
},
{ name: 'bold', values: [true] },
{ name: 'code', values: [true] },
// @ts-expect-error
Expand Down

0 comments on commit 09d0005

Please sign in to comment.