remove cert-info test, tested in cert-info.js repo

This commit is contained in:
AJ ONeal 2016-08-12 15:28:22 -06:00
parent 65e1d3962e
commit 42ee5de9fa
1 changed files with 0 additions and 27 deletions

View File

@ -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('');