Skip to content

Commit

Permalink
#3961 - fix f-test
Browse files Browse the repository at this point in the history
  • Loading branch information
novikov82 committed Feb 10, 2022
1 parent ede1ad5 commit 0d2dcc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testCafe/survey/titleActions.js
Expand Up @@ -64,7 +64,7 @@ frameworks.forEach((framework) => {
await t
.expect(Selector("h5 use").getAttribute("xlink:href")).eql("#icon-action")
.expect(Selector("h5 button span.sv-action-bar-item__title").hasClass("sv-action-bar-item__title--with-icon")).ok()
.expect(Selector("h5 button .sv-action-bar-item__icon").offsetWidth).eql(20);
.expect(Selector("h5 button .sv-action-bar-item__icon").getStyleProperty("width")).eql("20px");
});

test("check item with showTitle false", async (t) => {
Expand Down

0 comments on commit 0d2dcc6

Please sign in to comment.