Skip to content

Commit

Permalink
Fixed f-test for vue3
Browse files Browse the repository at this point in the history
  • Loading branch information
tsv2013 committed Nov 24, 2023
1 parent 9377638 commit 52949aa
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions testCafe/survey/options.js
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,9 @@ frameworks.forEach(framework => {

test("show top progress bar", async t => {
let progressSelector = ".sv_container .sv-components-column--expandable > .sv-components-column > div";
if(framework === "vue3") {
progressSelector = ".sv_container .sv-components-column--expandable > div";
}
const progressElement = Selector(progressSelector);
await t.expect(progressbar.exists).notOk();

Expand Down

0 comments on commit 52949aa

Please sign in to comment.