UNPKG

@swrve/core

Version:

Core set of Swrve UI Components

16 lines (13 loc) 458 B
import React from 'react' import { render } from '@testing-library/react' import Link from '../Link' describe('<Link/>', () => { it('should render basic link', () => { const { container } = render(<Link href="http://www.test.com" />) expect(container).toMatchSnapshot() }) it('should render disabled link', () => { const { container } = render(<Link href="http://www.test.com" disabled />) expect(container).toMatchSnapshot() }) })