add style for actor tiles
render actors got from backend backend test code to get actors
This commit is contained in:
19
src/elements/Popups/AddActorPopup/AddActorPopup.test.js
Normal file
19
src/elements/Popups/AddActorPopup/AddActorPopup.test.js
Normal file
@ -0,0 +1,19 @@
|
||||
import {shallow} from 'enzyme';
|
||||
import React from 'react';
|
||||
import AddActorPopup from './AddActorPopup';
|
||||
|
||||
describe('<AddActorPopup/>', function () {
|
||||
it('renders without crashing ', function () {
|
||||
const wrapper = shallow(<AddActorPopup/>);
|
||||
wrapper.unmount();
|
||||
});
|
||||
|
||||
// it('simulate change to other page', function () {
|
||||
// const wrapper = shallow(<AddActorPopup/>);
|
||||
//
|
||||
// console.log(wrapper.find('PopupBase').dive().debug());
|
||||
//
|
||||
//
|
||||
// console.log(wrapper.debug());
|
||||
// });
|
||||
});
|
Reference in New Issue
Block a user