Skip to content

Commit

Permalink
Fixes Prettier issues
Browse files Browse the repository at this point in the history
  • Loading branch information
walmazacn committed Dec 23, 2024
1 parent b857d74 commit e134c07
Showing 1 changed file with 3 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ describe('Compound Container Tests', () => {
onBeforeLoad(win) {
// Set up a spy on console.log
cy.stub(win.console, 'log', (value) => {
consoleLog = value
})
consoleLog = value;
});
}
});
stub = cy.stub();
Expand Down Expand Up @@ -286,10 +286,7 @@ describe('Compound Container Tests', () => {
it('LuigiClient API publishEvent', () => {
cy.on('window:alert', stub);

cy.get(containerSelector)
.shadow()
.contains('Publish event')
.click();
cy.get(containerSelector).shadow().contains('Publish event').click();

cy.should(() => {
expect(stub.getCall(0)).to.be.calledWith('custom-message: sendInput');
Expand Down

0 comments on commit e134c07

Please sign in to comment.