-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(typography): allow classname pass through on text components
- Loading branch information
Showing
4 changed files
with
28 additions
and
0 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 |
---|---|---|
@@ -1,6 +1,26 @@ | ||
import * as TextStoryFile from "./Text.stories"; | ||
|
||
import { render, screen } from "@testing-library/react"; | ||
|
||
import React from "react"; | ||
import Text from "./Text"; | ||
import { generateSnapshots } from "@chanzuckerberg/story-utils"; | ||
|
||
describe("<Text />", () => { | ||
generateSnapshots(TextStoryFile); | ||
|
||
it("should add the passthrough className", () => { | ||
render( | ||
<Text size="body" className="passthrough"> | ||
Some Text | ||
</Text>, | ||
); | ||
expect(screen.getByText("Some Text")).toMatchInlineSnapshot(` | ||
<p | ||
class="passthrough typography sizeBody colorBase" | ||
> | ||
Some Text | ||
</p> | ||
`); | ||
}); | ||
}); |
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