12345678910 |
- import React from 'react';
- import {shallow} from 'enzyme';
- import Qrcode from 'app/components/qrcode';
- describe('Qrcode', function() {
- it('renders', function() {
- let wrapper = shallow(<Qrcode code={[[0, 1, 1, 0, 0, 0, 0, 0]]} />);
- expect(wrapper).toMatchSnapshot();
- });
- });
|