Commit e4ed30ec authored by Eduardo Sanz García's avatar Eduardo Sanz García Committed by Eduardo

Remove outdated test for `clearSelectionExceptIn` RPC event.

In #4195, we removed `clearSelectionExceptIn` RPC event. Instead, the
host frame sends `clearSelection` RPC events to specific guest frames.
parent 3315447b
......@@ -693,16 +693,6 @@ describe('Guest', () => {
assert.calledOnce(hostRPC().call);
assert.calledWithExactly(hostRPC().call, 'textUnselected');
});
it("doesn't unselect text if frame identifier matches", () => {
const guest = createGuest();
guest.selectedRanges = [1];
simulateSelectionWithText();
emitHostEvent('clearSelectionExceptIn', null);
assert.equal(guest.selectedRanges.length, 1);
});
});
describe('when adder toolbar buttons are clicked', () => {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment