mirror of
https://github.com/overleaf/overleaf.git
synced 2025-02-17 01:21:31 +00:00
[cypress] Avoid logging stubbed Angular events (#13983)
GitOrigin-RevId: 7268822768aaeeb54c2c42d854d73dcecc57016d
This commit is contained in:
parent
0a470fb54f
commit
b1d6770f1c
1 changed files with 3 additions and 3 deletions
|
@ -90,9 +90,9 @@ export const mockScope = (content?: string) => {
|
|||
refreshResolvedCommentsDropdown: cy.stub(() => sleep(1000)),
|
||||
onlineUserCursorHighlights: {},
|
||||
permissionsLevel: 'owner',
|
||||
$on: cy.stub(),
|
||||
$broadcast: cy.stub(),
|
||||
$emit: cy.stub(),
|
||||
$on: cy.stub().log(false),
|
||||
$broadcast: cy.stub().log(false),
|
||||
$emit: cy.stub().log(false),
|
||||
$root: {
|
||||
_references: {
|
||||
keys: ['foo'],
|
||||
|
|
Loading…
Reference in a new issue