Fixed jasmine test case failure.

This commit is contained in:
Pravesh Sharma 2023-01-03 12:57:32 +05:30 committed by GitHub
parent a562e73d34
commit e987b3074d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -97,6 +97,9 @@ describe('#enableTriggers', () => {
return [200, { return [200, {
success: 1, success: 1,
info: 'some information', info: 'some information',
data: {
has_enable_triggers: '1'
}
}]; }];
}); });
}); });
@ -226,6 +229,9 @@ describe('#disableTriggers', () => {
return [200, { return [200, {
success: 1, success: 1,
info: 'some information', info: 'some information',
data: {
has_enable_triggers: '0'
}
}]; }];
}); });
}); });