You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 11, 2018. It is now read-only.
I am writing unit test cases for my project using jest.
when i run npm test i am getting below error.
● Test suite failed to run
TypeError: Cannot read property 'Aspect' of undefined
at Object.<anonymous> (node_modules/react-native-qrcode-scanner/node_modules/react-native-camera/index.js:254:78)
at Object.<anonymous> (node_modules/react-native-qrcode-scanner/index.js:17:24)
below is my code.
import React from 'react';
import TestUtils from 'react-addons-test-utils';
import {Item} from '../Item';
test('works', () => {
expect(true).toBe(true)
})