Skip to content

Commit

Permalink
fix prettier issue
Browse files Browse the repository at this point in the history
  • Loading branch information
epszaw committed Jun 6, 2024
1 parent 22ad875 commit 0546179
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/allure-codeceptjs/test/spec/hooks.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ it("handles hooks", async () => {
expect(groups).toEqual(
expect.arrayContaining([
expect.objectContaining({
name: "\"before all\" hook: BeforeSuite for \"sample-scenario\"",
name: String.raw`"before all" hook: BeforeSuite for "sample-scenario"`,
befores: expect.arrayContaining([
expect.objectContaining({
status: Status.PASSED,
Expand All @@ -39,7 +39,7 @@ it("handles hooks", async () => {
afters: [],
}),
expect.objectContaining({
name: "\"before each\" hook: Before for \"sample-scenario\"",
name: String.raw`"before each" hook: Before for "sample-scenario"`,
befores: expect.arrayContaining([
expect.objectContaining({
status: Status.PASSED,
Expand All @@ -49,7 +49,7 @@ it("handles hooks", async () => {
afters: [],
}),
expect.objectContaining({
name: "\"after each\" hook: After for \"sample-scenario\"",
name: String.raw`"after each" hook: After for "sample-scenario"`,
befores: [],
afters: expect.arrayContaining([
expect.objectContaining({
Expand All @@ -59,7 +59,7 @@ it("handles hooks", async () => {
]),
}),
expect.objectContaining({
name: "\"after all\" hook: AfterSuite for \"sample-scenario\"",
name: String.raw`"after all" hook: AfterSuite for "sample-scenario"`,
befores: [],
afters: expect.arrayContaining([
expect.objectContaining({
Expand Down

0 comments on commit 0546179

Please sign in to comment.