Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
yannbf committed Dec 19, 2023
1 parent 9508756 commit 2b1258a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion code/lib/telemetry/src/storybook-metadata.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ describe('storybook-metadata', () => {
`);
});

test.each(Object.entries(metaFrameworks))(
it.each(Object.entries(metaFrameworks))(
'should detect the supported metaframework: %s',
async (metaFramework, name) => {
const res = await computeStorybookMetadata({
Expand Down
2 changes: 1 addition & 1 deletion code/renderers/react/src/__test__/internals.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ const testCases = Object.values(composeStories(stories)).map((Story) => [
Story.storyName!,
Story,
]);
test.each(testCases)('Renders %s story', async (_storyName, Story) => {
it.each(testCases)('Renders %s story', async (_storyName, Story) => {
cleanup();
const tree = await render(<Story />);
expect(tree.baseElement).toMatchSnapshot();
Expand Down

0 comments on commit 2b1258a

Please sign in to comment.