Skip to content

Commit 44be352

Browse files
committed
test: - Minor change to naming of tests
1 parent 63ce54d commit 44be352

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/Task/Recurrence.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ describe('identicalTo', () => {
230230
});
231231

232232
describe('Recurrence - with removeScheduledDateOnRecurrence', () => {
233-
it('removes the scheduledDate when removeScheduledDate is true', () => {
233+
it('should remove the scheduledDate when removeScheduledDate is true', () => {
234234
// Arrange
235235
const recurrence = Recurrence.fromText({
236236
recurrenceRuleText: 'every month',
@@ -250,7 +250,7 @@ describe('Recurrence - with removeScheduledDateOnRecurrence', () => {
250250
expect(next!.dueDate).toEqualMoment(moment('2022-02-10'));
251251
});
252252

253-
it('does not remove the scheduledDate when it is the only date', () => {
253+
it('should not remove the scheduledDate when it is the only date', () => {
254254
// Arrange
255255
const recurrence = Recurrence.fromText({
256256
recurrenceRuleText: 'every month',

0 commit comments

Comments
 (0)