Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
marco-ippolito committed Dec 13, 2024
1 parent 66b1a6f commit 9f98105
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions libs/report/committers/src/lib/committers-monthly.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,16 +34,16 @@ describe('parseMonthly', () => {
expect(result).toEqual([
{
month: 'January 2023',
start: new Date('2022-12-31T23:00:00.000Z'), // Start of January
end: new Date('2023-01-31T23:00:00.000Z'), // End of January
start: new Date('2023-01-01T00:00:00.000Z'),
end: new Date('2023-02-01T00:00:00.000Z'),
committers: {
Marco: 2,
},
},
{
month: 'February 2023',
start: new Date('2023-01-31T23:00:00.000Z'), // Start of February
end: new Date('2023-02-28T23:00:00.000Z'), // End of February
start: new Date('2023-02-01T00:00:00.000Z'),
end: new Date('2023-03-01T00:00:00.000Z'),
committers: {
George: 1,
Marco: 1,
Expand Down Expand Up @@ -76,8 +76,8 @@ describe('parseMonthly', () => {
expect(result).toEqual([
{
month: 'March 2023',
start: new Date('2023-02-28T23:00:00.000Z'), // Start of March
end: new Date('2023-03-31T22:00:00.000Z'), // End of March
start: new Date('2023-03-01T00:00:00.000Z'),
end: new Date('2023-04-01T00:00:00.000Z'),
committers: {
Greg: 1,
},
Expand Down

0 comments on commit 9f98105

Please sign in to comment.