Remove the semicov dependency as now we use blanket
This commit is contained in:
parent
8aec0a3b47
commit
d697fb5d4e
|
@ -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"
|
||||||
},
|
},
|
||||||
|
|
|
@ -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;
|
||||||
|
|
||||||
|
|
|
@ -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');
|
||||||
|
|
Loading…
Reference in New Issue