Skip to content

Commit

Permalink
Format for api file
Browse files Browse the repository at this point in the history
  • Loading branch information
sagar-qa007 committed Sep 25, 2024
1 parent 7f38880 commit bf5f295
Showing 1 changed file with 9 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,9 @@ describe("Rest Bugs tests", { tags: ["@tag.Datasource"] }, function () {
.find("img")
.invoke("attr", "src")
.then(($src) => {
expect($src).not.eq("http://host.docker.internal:4200/clouddefaultImage.png");
expect($src).not.eq(
"http://host.docker.internal:4200/clouddefaultImage.png",
);
//expect($src).contains("cat");
});

Expand All @@ -89,7 +91,9 @@ describe("Rest Bugs tests", { tags: ["@tag.Datasource"] }, function () {
.find("img")
.invoke("attr", "src")
.then(($src) => {
expect($src).not.eq("http://host.docker.internal:4200/clouddefaultImage.png");
expect($src).not.eq(
"http://host.docker.internal:4200/clouddefaultImage.png",
);
//expect($src).contains("dog");
});

Expand Down Expand Up @@ -117,7 +121,9 @@ describe("Rest Bugs tests", { tags: ["@tag.Datasource"] }, function () {
.find("img")
.invoke("attr", "src")
.then(($src) => {
expect($src).not.eq("http://host.docker.internal:4200/clouddefaultImage.png");
expect($src).not.eq(
"http://host.docker.internal:4200/clouddefaultImage.png",
);
//expect($src).contains("cocktail");
});

Expand Down

0 comments on commit bf5f295

Please sign in to comment.