-
Notifications
You must be signed in to change notification settings - Fork 146
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Improve frontmatter types, pass generic TFrontmatter type throu…
…gh (#342)
- Loading branch information
Bryce Kalow
authored
Feb 28, 2023
1 parent
697c682
commit 2b35582
Showing
5 changed files
with
44 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import { compileMDX } from '../rsc' | ||
|
||
describe('compileMDX', () => { | ||
test('frontmatter types', async () => { | ||
const { frontmatter } = await compileMDX<{ title: string }>({ | ||
source: `--- | ||
title: 'Hello World' | ||
--- | ||
# Hi`, | ||
options: { | ||
parseFrontmatter: true, | ||
}, | ||
}) | ||
|
||
expect(frontmatter.title).toEqual('Hello World') | ||
|
||
// @ts-expect-error -- blah does not exist on the frontmatter type | ||
expect(frontmatter.blah).toBeUndefined() | ||
}) | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters