Created QrCodeModal test

This commit is contained in:
Alejandro Celaya
2018-11-01 12:35:51 +01:00
parent 79a16a2c2c
commit 1697ef9306
2 changed files with 32 additions and 2 deletions

View File

@@ -0,0 +1,28 @@
import React from 'react';
import { shallow } from 'enzyme';
import QrCodeModal from '../../../src/short-urls/helpers/QrCodeModal';
import ExternalLink from '../../../src/utils/ExternalLink';
describe('<QrCodeModal />', () => {
let wrapper;
const url = 'https://doma.in/abc123';
beforeEach(() => {
wrapper = shallow(<QrCodeModal url={url} />);
});
afterEach(() => wrapper.unmount());
it('shows an external link to the URL', () => {
const externalLink = wrapper.find(ExternalLink);
expect(externalLink).toHaveLength(1);
expect(externalLink.prop('href')).toEqual(url);
});
it('displays an image with the QR code of the URL', () => {
const img = wrapper.find('img');
expect(img).toHaveLength(1);
expect(img.prop('src')).toEqual(`${url}/qr-code`);
});
});