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": { "devDependencies": {
"blanket": "latest", "blanket": "latest",
"semicov": "*",
"should": "~1.2.2", "should": "~1.2.2",
"mocha": "~1.8.2" "mocha": "~1.8.2"
}, },

View File

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

View File

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