2617-add_scope_days_on_travel_index #530
No reviewers
Labels
No Milestone
No Assignees
2 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: verdnatura/salix#530
Loading…
Reference in New Issue
No description provided.
Delete Branch "2617-add_scope_days_on_travel_index"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
@ -0,0 +51,4 @@
it('should throw an error when scope days has a string value', () => {
let params = controller.fetchParams({
scopeDays: 'prueba'
ie: invalid scopeDays
@ -0,0 +34,4 @@
let params = controller.fetchParams({
scopeDays: 0
});
if (!params || params.scopeDays == '0')
remove this.
@ -0,0 +44,4 @@
let params = controller.fetchParams({
scopeDays: 2
});
if (typeof params.scopeDays === 'number')
remove this.
@ -0,0 +53,4 @@
let params = controller.fetchParams({
scopeDays: 'prueba'
});
if (typeof params.scopeDays !== 'number')
remove this.
LGTM
LGTM