summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordelucis2024-06-20 18:09:43 +0000
committerfredkbot2024-06-20 18:09:43 +0000
commit39a0e4c9d50c94827b8179f7959d94edd65f1097 (patch)
tree6068ca4830a05556c9acfe8b94fbd10eab254702
parent8af5a60ab14f4dae7f5a5e4ee535ae927273368b (diff)
downloadIT.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.ts4
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>"`
+ );
});