Skip to content

Commit 6171fdf

Browse files
authored
feat(desktop-gui): add ci and dashboard prompts with docs dropdown menu (#16433)
1 parent e0c385e commit 6171fdf

File tree

25 files changed

+1654
-169
lines changed

25 files changed

+1654
-169
lines changed

packages/desktop-gui/cypress/fixtures/config.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -408,6 +408,14 @@
408408
}
409409
},
410410
"responseTimeout": 20000,
411+
"state": {
412+
"firstOpened": 1609459200000,
413+
"lastOpened": 1609459200000,
414+
"promptsShown": {
415+
"ci1": 1609459200000,
416+
"orchestration1": 1609459200000
417+
}
418+
},
411419
"socketId": null,
412420
"socketIoCookie": "__socket.io",
413421
"socketIoRoute": "/__socket.io",

packages/desktop-gui/cypress/integration/login_spec.js

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -264,20 +264,6 @@ describe('Login', function () {
264264
})
265265
})
266266
})
267-
268-
describe('terms and privacy message', () => {
269-
it('opens links to terms and privacy on click', function () {
270-
cy.contains('a', 'Terms of Use')
271-
.click().then(function () {
272-
expect(this.ipc.externalOpen).to.be.calledWith('https://on.cypress.io/terms-of-use')
273-
})
274-
275-
cy.contains('a', 'Privacy Policy')
276-
.click().then(function () {
277-
expect(this.ipc.externalOpen).to.be.calledWith('https://on.cypress.io/privacy-policy')
278-
})
279-
})
280-
})
281267
})
282268

283269
describe('when not connected to api server', function () {

0 commit comments

Comments
 (0)