remove cert-info test, tested in cert-info.js repo
This commit is contained in:
parent
65e1d3962e
commit
42ee5de9fa
|
@ -1,27 +0,0 @@
|
||||||
'use strict';
|
|
||||||
|
|
||||||
var certInfo = require('../lib/cert-info.js');
|
|
||||||
|
|
||||||
var c = certInfo.testGetCertInfo();
|
|
||||||
|
|
||||||
console.info('');
|
|
||||||
|
|
||||||
console.info(c.notBefore.value);
|
|
||||||
console.info(new Date(c.notBefore.value).valueOf());
|
|
||||||
|
|
||||||
console.info('');
|
|
||||||
|
|
||||||
console.info(c.notAfter.value);
|
|
||||||
console.info(new Date(c.notAfter.value).valueOf());
|
|
||||||
|
|
||||||
console.info('');
|
|
||||||
|
|
||||||
var json = certInfo.testBasicCertInfo();
|
|
||||||
|
|
||||||
console.log('');
|
|
||||||
console.log(JSON.stringify(json, null, ' '));
|
|
||||||
console.log('');
|
|
||||||
|
|
||||||
console.info('');
|
|
||||||
console.info('If we got values at all, it must have passed.');
|
|
||||||
console.info('');
|
|
Loading…
Reference in New Issue