Fix formatting

This commit is contained in:
Dorian Karter 2022-04-10 00:36:39 -05:00
parent 8eedb57104
commit 0c56a3ed57

View file

@ -40,7 +40,9 @@ it("tests rendering of Bookmark with newTab=false", () => {
it("tests rendering of Bookmark without newTab", () => { it("tests rendering of Bookmark without newTab", () => {
let props = bookmarkGroupProps.items[0]; let props = bookmarkGroupProps.items[0];
const { baseElement } = render(<Bookmark name={props.name} url={props.url} />); const { baseElement } = render(
<Bookmark name={props.name} url={props.url} />,
);
expect(baseElement).toMatchSnapshot(); expect(baseElement).toMatchSnapshot();
}); });