chore: fix tests

This commit is contained in:
Anoop M D 2024-02-27 01:43:36 +05:30
parent b375620875
commit 13cb71eaef

View File

@ -14,7 +14,6 @@ describe('Encryption and Decryption Tests', () => {
it('encrypt should throw an error for invalid string', () => {
expect(() => encryptString(null)).toThrow('Encrypt failed: invalid string');
expect(() => encryptString('')).toThrow('Encrypt failed: invalid string');
});
it('decrypt should throw an error for invalid string', () => {