react-native-qrcode-svg
Version:
A QR Code generator for React Native based on react-native-svg and javascript-qrcode.
22 lines (17 loc) • 528 B
JavaScript
import genMatrix from '../genMatrix'
it('generates with ecl:M correctly', () => {
const matrix = genMatrix('test')
expect(matrix).toMatchSnapshot()
})
it('generates with ecl:L correctly', () => {
const matrix = genMatrix('test', 'L')
expect(matrix).toMatchSnapshot()
})
it('generates with ecl:H correctly', () => {
const matrix = genMatrix('test', 'H')
expect(matrix).toMatchSnapshot()
})
it('generates with ecl:Q correctly', () => {
const matrix = genMatrix('test', 'Q')
expect(matrix).toMatchSnapshot()
})