mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
12 lines
263 B
TypeScript
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();
|
|
});
|
|
});
|