cic-staff-client/src/app/_helpers/pgp-signer.spec.ts

9 lines
189 B
TypeScript
Raw Normal View History

2021-02-17 11:00:38 +01:00
import { PGPSigner } from './pgp-signer';
let keystore;
describe('PgpSigner', () => {
it('should create an instance', () => {
expect(new PGPSigner(keystore)).toBeTruthy();
});
});