Skip to content

Commit

Permalink
Fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
AleksSavelev committed Aug 17, 2023
1 parent fae1cb1 commit d1dec24
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion spec/e2e/pbivizInfoSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ describe("E2E - pbiviz info", () => {

expect(error).toBeDefined();
expect(error.status).toBe(1);
expect(error.message).toContain("Error: pbiviz.json not found. You must be in the root of a visual project to run this command");
expect(error.message).toContain("pbiviz.json not found. You must be in the root of a visual project to run this command");

});

Expand Down
2 changes: 1 addition & 1 deletion spec/e2e/pbivizPackageSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ describe("E2E - pbiviz package", () => {
}
expect(error).toBeDefined();
expect(error.status).toBe(1);
expect(error.message).toContain("Error: pbiviz.json not found. You must be in the root of a visual project to run this command");
expect(error.message).toContain("pbiviz.json not found. You must be in the root of a visual project to run this command");
});

it("Should throw error if there is nothing to produce", () => {
Expand Down
2 changes: 1 addition & 1 deletion spec/e2e/pbivizStartSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ describe("E2E - pbiviz start", () => {
}
expect(error).toBeDefined();
expect(error.status).toBe(1);
expect(error.message).toContain("Error: pbiviz.json not found. You must be in the root of a visual project to run this command");
expect(error.message).toContain("pbiviz.json not found. You must be in the root of a visual project to run this command");
});

it("Should generate statistic files without flags", (done) => {
Expand Down

0 comments on commit d1dec24

Please sign in to comment.