Skip to content
Snippets Groups Projects
Commit 28f5ddea authored by Steinwender, Tamara's avatar Steinwender, Tamara
Browse files

Add unit test for crypto

parent b322534f
No related branches found
No related tags found
No related merge requests found
Pipeline #61419 failed
import {assert, expect} from '@esm-bundle/chai';
import {encrypt, decrypt} from '../src/crypto';
suite('encyptAndDecrypt', () => {
test('encrypt', async () => {
let res = await encrypt('token', 'my-payload');
assert.isString(res);
});
test('encryptAndDecrypt', async () => {
let payload = 'my-payload';
let secret = await encrypt('token', payload);
let plain = await decrypt('token', secret);
assert.equal(payload, plain);
});
});
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment