Skip to content

Commit 19dbfc4

Browse files
committed
fix double quote
1 parent cff0e66 commit 19dbfc4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

component-library/scripts/generate-llms-files.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ describe('llms Storybook story code examples', () => {
9292
expect(markdown).not.toContain('](base + item.file');
9393
});
9494

95-
test("renders do/dont guidance as structured sections with code snippets"" () => {
95+
test("renders do/dont guidance as structured sections with code snippets", () => {
9696
const markdown = storyMarkdown('../docs/foundations/Elevation.stories.ts', 'DoPairing');
9797

9898
expect(markdown).toContain('**Do**');
@@ -101,7 +101,7 @@ describe('llms Storybook story code examples', () => {
101101
expect(markdown).toContain('box-shadow: var(--elevation-shadow-raised)');
102102
expect(markdown).toContain('Always pair raised and overlay surfaces with their shadow token.');
103103
expect(markdown).toContain("Don't use raised or overlay surfaces without their paired shadow.");
104-
expect(markdown).not.toContain("| Do | Dont |"";
104+
expect(markdown).not.toContain("| Do | Dont |");
105105
});
106106
});
107107

0 commit comments

Comments
 (0)