Files
grafana/public/app/core/components/sidemenu/SignIn.test.tsx
Tobias Skarhed b62ab25c41 SignIn: Update redirect on reroute (#18360)
* Connect SignIn with redux and get url

* Update test snapshot
2019-08-03 16:21:17 +02:00

12 lines
263 B
TypeScript

import React from 'react';
import { shallow } from 'enzyme';
import { SignIn } from './SignIn';
describe('Render', () => {
it('should render component', () => {
const wrapper = shallow(<SignIn url="/" />);
expect(wrapper).toMatchSnapshot();
});
});