| Total Complexity | 3 |
| Complexity/F | 1 |
| Lines of Code | 11 |
| Function Count | 3 |
| Duplicated Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | import { openDrawer, closeDrawer } from '../actions' |
||
| 2 | |||
| 3 | describe('drawer actions', () => { |
||
| 4 | it('should return action with open drawer', function() { |
||
| 5 | expect(openDrawer()).toMatchSnapshot() |
||
| 6 | }) |
||
| 7 | |||
| 8 | it('should return action with close drawer', function() { |
||
| 9 | expect(closeDrawer()).toMatchSnapshot() |
||
| 10 | }) |
||
| 11 | }) |
||
| 12 |