Skip to content

Commit 6454bef

Browse files
committed
new locales
1 parent 426adb0 commit 6454bef

20 files changed

+2181
-834
lines changed

cypress/e2e/500_control.cy.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,10 @@ describe('load control page, verify stream is there', () => {
3535
cy.get('a.v-list-item[href*="control"]').click()
3636
cy.get('#app').click()
3737
cy.get('button.video').click()
38+
cy.wait(5000)
3839
cy.get('button.video').click()
3940
})
40-
41+
/*
4142
it('say a phrase', () => {
4243
cy.visit('http://localhost:8080')
4344
cy.get('.v-carousel').should('exist')
@@ -58,4 +59,5 @@ describe('load control page, verify stream is there', () => {
5859
cy.get('a.gallery').click()
5960
cy.url().should('include', '/gallery')
6061
})
61-
})
62+
*/
63+
})

cypress/e2e/700_settings.cy.js

+7
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,12 @@ describe('load homepage', () => {
3636
cy.get('#app').click()
3737
cy.get('button#0').should('exist')
3838
cy.get('button#0').click()
39+
cy.wait(500)
40+
cy.get('#settings_password').should('exist')
3941
cy.get('#settings_password').type('secret')
4042
cy.get('#save').should('exist')
4143
cy.get('#save').click()
44+
cy.get('.v-snackbar__content').should('exist')
4245
cy.visit('http://localhost:8080')
4346
cy.get('.v-carousel').should('exist')
4447
cy.get('button.v-app-bar-nav-icon').should('exist').click()
@@ -47,8 +50,12 @@ describe('load homepage', () => {
4750
cy.get('#settings_password_verify').type('secret')
4851
cy.get('#settings_password_verify_ok').click()
4952
cy.get('#app').click()
53+
cy.get('button#0').should('exist')
54+
cy.get('button#0').click()
55+
cy.wait(500)
5056
cy.get('#settings_password').clear()
5157
cy.get('#save').click()
58+
cy.get('.v-snackbar__content').should('exist')
5259
})
5360

5461
it('modifies most settings, valid values, save', () => {

0 commit comments

Comments
 (0)