We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a34b159 commit 2cd3bc1Copy full SHA for 2cd3bc1
test/calls/Calls.spec.js
@@ -1,6 +1,6 @@
1
import { getWrapper } from '../shared';
2
import NavigationBar from '../../src/components/NavigationBar';
3
-import CallsPanel from '../../src/components/CallsPanel';
+import ActiveCallsPanel from '../../src/components/ActiveCallsPanel';
4
5
let wrapper = null;
6
let panel = null;
@@ -9,7 +9,7 @@ beforeEach(async () => {
9
wrapper = await getWrapper();
10
const navigationBar = wrapper.find(NavigationBar).first();
11
await navigationBar.props().goTo('/calls');
12
- panel = wrapper.find(CallsPanel).first();
+ panel = wrapper.find(ActiveCallsPanel).first();
13
});
14
15
describe('history', () => {
0 commit comments