We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b14b17b commit f90897eCopy full SHA for f90897e
tests/e2e/specs/LiveRefresh.js
@@ -13,16 +13,16 @@ describe("Live Refresh", () => {
13
14
it("changes the render after code change", () => {
15
cy.get("@preview")
16
- .find(".vdp-datepicker input")
+ .find(".v3dp__datepicker input")
17
.should("not.have.value", "");
18
19
- const codeToDelete = ' :value="today"/>';
+ const codeToDelete = ' v-model="today"/>';
20
cy.get("@container")
21
.find(".prism-editor-wrapper textarea")
22
.type(`${"{backspace}".repeat(codeToDelete.length)}/>`);
23
24
25
26
.should("have.value", "");
27
});
28
0 commit comments