diff options
author | delucis | 2024-06-20 18:09:43 +0000 |
---|---|---|
committer | fredkbot | 2024-06-20 18:09:43 +0000 |
commit | 39a0e4c9d50c94827b8179f7959d94edd65f1097 (patch) | |
tree | 6068ca4830a05556c9acfe8b94fbd10eab254702 | |
parent | 8af5a60ab14f4dae7f5a5e4ee535ae927273368b (diff) | |
download | IT.starlight-39a0e4c9d50c94827b8179f7959d94edd65f1097.tar.gz IT.starlight-39a0e4c9d50c94827b8179f7959d94edd65f1097.tar.bz2 IT.starlight-39a0e4c9d50c94827b8179f7959d94edd65f1097.zip |
[ci] format
-rw-r--r-- | packages/starlight/__tests__/remark-rehype/rehype-steps.test.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/packages/starlight/__tests__/remark-rehype/rehype-steps.test.ts b/packages/starlight/__tests__/remark-rehype/rehype-steps.test.ts index 273788e6..a7081023 100644 --- a/packages/starlight/__tests__/remark-rehype/rehype-steps.test.ts +++ b/packages/starlight/__tests__/remark-rehype/rehype-steps.test.ts @@ -96,5 +96,7 @@ test('applies custom property if start attribute is used', () => { test('custom property for start count does not interfere with custom styles', () => { const { html } = processSteps(`<ol start="20" style="color: red"><li>Step one</li></ol>`); - expect(html).toMatchInlineSnapshot(`"<ol start="20" style="--sl-steps-start: 19;color: red" role="list" class="sl-steps"><li>Step one</li></ol>"`); + expect(html).toMatchInlineSnapshot( + `"<ol start="20" style="--sl-steps-start: 19;color: red" role="list" class="sl-steps"><li>Step one</li></ol>"` + ); }); |