1
0
鏡像自 https://github.com/therootcompany/greenlock.js.git synced 2024-11-16 17:29:00 +00:00

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
父節點 65e1d3962e
當前提交 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('');