Skip to content

Commit fdba6e9

Browse files
author
Guillaume Chau
committed
test(e2e): fix beta channel
1 parent 0551c52 commit fdba6e9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cypress/support/commands.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
// Cypress.Commands.overwrite("visit", (originalFn, url, options) => { ... })
2626

2727
Cypress.Commands.add('vueCheckInit', () => {
28-
cy.get('.message').should('be.visible', { timeout: 10000 }).then(el => {
28+
cy.get('.message .text').should('be.visible', { timeout: 10000 }).then(el => {
2929
expect(el.text()).to.include('Ready. Detected Vue')
3030
})
3131
cy.get('.instance').eq(0).contains('Root')

src/devtools/App.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
:key="message"
2626
class="message"
2727
>
28-
<span>{{ message }}</span>
28+
<span class="text">{{ message }}</span>
2929

3030
<span class="badges">
3131
<span

0 commit comments

Comments
 (0)