Skip to content

Commit

Permalink
feat: productivity email action text
Browse files Browse the repository at this point in the history
  • Loading branch information
kwasniew committed Dec 12, 2024
1 parent d98ffa0 commit 0db032c
Showing 1 changed file with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -195,9 +195,7 @@ describe('productivityReportViewModel', () => {
metrics,
});

expect(viewModel.actionText()).toBe(
'You are doing a good job at keeping your project healthy by archiving stale flags',
);
expect(viewModel.actionText()).toBe(null);
});

it('health declined', () => {
Expand Down Expand Up @@ -252,9 +250,7 @@ describe('productivityReportViewModel', () => {
metrics,
});

expect(viewModel.actionText()).toBe(
'You are doing a good job at keeping your project healthy by archiving stale flags',
);
expect(viewModel.actionText()).toBe(null);
});
});
});

0 comments on commit 0db032c

Please sign in to comment.