Skip to content

Commit

Permalink
add jest test
Browse files Browse the repository at this point in the history
  • Loading branch information
dobri1408 committed Sep 15, 2023
1 parent 8448bf4 commit cc9533c
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/ui/Tab/Tab.stories.test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import React from 'react';
import { render } from '@testing-library/react';
import { Tab } from './Tab.stories';
import '@testing-library/jest-dom/extend-expect';

describe('It renderes corectly', () => {
it('renders corectly', () => {
render(<Tab {...Tab.args} />);
});
});

0 comments on commit cc9533c

Please sign in to comment.