Files
old-tellall/web/src/components/__tests__/IntentDetails.test.js

11 lines
264 B
JavaScript
Raw Normal View History

import React from 'react';
import { shallow } from 'enzyme';
import IntentDetails from '../IntentDetails';
it('renders without crashing', () => {
let dummyIntent = {
questions:['q1','q2']
}
shallow(<IntentDetails selectedIntent={dummyIntent} />);
});