feat(okr): coaching-hook klokke-seam + node-test fixtures (SC4) [skip-docs]
This commit is contained in:
parent
60174e8f5c
commit
b594eeb88c
2 changed files with 102 additions and 1 deletions
|
|
@ -50,7 +50,9 @@ try {
|
|||
totalWeeks = 13;
|
||||
}
|
||||
|
||||
const now = new Date();
|
||||
// Testable clock seam: OKR_NOW (ISO date) overrides the wall clock so the
|
||||
// phase branches (early/mid/late) can be asserted deterministically.
|
||||
const now = process.env.OKR_NOW ? new Date(process.env.OKR_NOW) : new Date();
|
||||
const cycleStart = new Date(cycleYear, startMonth, 1);
|
||||
const cycleEnd = new Date(cycleYear, endMonth + 1, 0); // last day of end month
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue