Remove the semicov dependency as now we use blanket

This commit is contained in:
Raymond Feng 2013-08-15 14:10:13 -07:00
parent 8aec0a3b47
commit d697fb5d4e
3 changed files with 4 additions and 1 deletions

View File

@ -19,7 +19,6 @@
],
"devDependencies": {
"blanket": "latest",
"semicov": "*",
"should": "~1.2.2",
"mocha": "~1.8.2"
},

View File

@ -1,5 +1,6 @@
module.exports = require('should');
/*
if (!process.env.TRAVIS) {
if (typeof __cov === 'undefined') {
process.on('exit', function () {
@ -9,6 +10,7 @@ if (!process.env.TRAVIS) {
require('semicov').init('lib');
}
*/
var Schema = require('../').Schema;

View File

@ -1,8 +1,10 @@
/*
if (!process.env.TRAVIS) {
var semicov = require('semicov');
semicov.init('lib', 'LoopbackData');
process.on('exit', semicov.report);
}
*/
try {
global.sinon = require('sinon');