Lines Matching refs:expect
59 expect(_run).toHaveBeenCalledTimes(1);
60 expect(_run).toHaveBeenCalledWith('root');
73 expect(_run).toHaveBeenCalledTimes(3);
74 expect(_run).toHaveBeenCalledWith('root');
105 expect(_run).toHaveBeenCalledWith('root');
106 expect(_run).toHaveBeenCalledTimes(1);
114 expect(_onCreate).toHaveBeenCalledWith('child1');
115 expect(_onCreate).toHaveBeenCalledTimes(1);
116 expect(_run).toHaveBeenCalledWith('root');
117 expect(_run).toHaveBeenCalledWith('child1');
118 expect(_run).toHaveBeenCalledTimes(4);
126 expect(_onCreate).toHaveBeenCalledWith('child2');
127 expect(_onCreate).toHaveBeenCalledTimes(1);
128 expect(_run).toHaveBeenCalledWith('root');
129 expect(_run).toHaveBeenCalledWith('child1');
130 expect(_run).toHaveBeenCalledWith('child2');
131 expect(_run).toHaveBeenCalledTimes(6);
139 expect(_onCreate).toHaveBeenCalledWith('child3');
140 expect(_onDestroy).toHaveBeenCalledWith('child2');
141 expect(_onCreate).toHaveBeenCalledTimes(1);
142 expect(_run).toHaveBeenCalledWith('root');
143 expect(_run).toHaveBeenCalledWith('child1');
144 expect(_run).toHaveBeenCalledWith('child3');
145 expect(_run).toHaveBeenCalledTimes(6);
153 expect(_onDestroy).toHaveBeenCalledWith('child1');
154 expect(_onDestroy).toHaveBeenCalledWith('child3');
155 expect(_onCreate).toHaveBeenCalledTimes(0);
156 expect(_onDestroy).toHaveBeenCalledTimes(2);
157 expect(_run).toHaveBeenCalledWith('root');
158 expect(_run).toHaveBeenCalledTimes(2);