Skip to content

Commit

Permalink
Lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bdotdub committed Sep 8, 2017
1 parent 9eea00c commit ad7d09b
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions source/platforms/github/_tests/_github_git.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,12 @@ describe("the dangerfile gitDSL", async () => {
expect(empty).toEqual({
a: { after: "o, world", before: null },
b: { after: 3, before: null },
c: { added: ["one", "two", "three", "four"], after: ["one", "two", "three", "four"], before: null, removed: [] },
c: {
added: ["one", "two", "three", "four"],
after: ["one", "two", "three", "four"],
before: null,
removed: [],
},
d: { added: ["one", "two"], after: ["one", "two"], before: null, removed: [] },
e: { added: ["five", "one", "three"], after: ["five", "one", "three"], before: null, removed: [] },
})
Expand All @@ -277,8 +282,13 @@ describe("the dangerfile gitDSL", async () => {
expect(empty).toEqual({
a: { after: null, before: "o, world" },
b: { after: null, before: 3 },
c: { added: [], after: null, before: ["one", "two", "three", "four"], removed: ["one", "two", "three", "four"] },
d: { added: [], after: null, before: ["one", "two",], removed: ["one", "two"] },
c: {
added: [],
after: null,
before: ["one", "two", "three", "four"],
removed: ["one", "two", "three", "four"],
},
d: { added: [], after: null, before: ["one", "two"], removed: ["one", "two"] },
e: { added: [], after: null, before: ["five", "one", "three"], removed: ["five", "one", "three"] },
})
})
Expand Down

0 comments on commit ad7d09b

Please sign in to comment.