Remove the semicov dependency as now we use blanket
This commit is contained in:
parent
8aec0a3b47
commit
d697fb5d4e
|
@ -19,7 +19,6 @@
|
|||
],
|
||||
"devDependencies": {
|
||||
"blanket": "latest",
|
||||
"semicov": "*",
|
||||
"should": "~1.2.2",
|
||||
"mocha": "~1.8.2"
|
||||
},
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -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');
|
||||
|
|
Loading…
Reference in New Issue