8 lines
198 B
TypeScript
8 lines
198 B
TypeScript
import { MutablePgpKeyStore } from '@app/_pgp/pgp-key-store';
|
|
|
|
describe('PgpKeyStore', () => {
|
|
it('should create an instance', () => {
|
|
expect(new MutablePgpKeyStore()).toBeTruthy();
|
|
});
|
|
});
|