Skip to content
This repository has been archived by the owner on Aug 13, 2021. It is now read-only.

Commit

Permalink
remove captains log dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
particlebanana committed Jun 7, 2016
1 parent 5d7ce9f commit d40c683
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 9 deletions.
3 changes: 1 addition & 2 deletions package.json
Expand Up @@ -36,8 +36,7 @@
},
"devDependencies": {
"mocha": "2.5.3",
"captains-log": "0.11.11"
"waterline-adapter-tests": "~0.12.1",
"waterline-adapter-tests": "~0.12.1"
},
"waterlineAdapter": {
"waterlineVersion": "~0.10.0",
Expand Down
13 changes: 6 additions & 7 deletions test/runner.js
Expand Up @@ -15,7 +15,6 @@

var util = require('util');
var mocha = require('mocha');
var log = require('captains-log')();
var TestRunner = require('waterline-adapter-tests');
var Adapter = require('../lib/adapter');

Expand All @@ -40,12 +39,12 @@ try {



log.info('Testing `' + package.name + '`, a Sails/Waterline adapter.');
log.info('Running `waterline-adapter-tests` against ' + interfaces.length + ' interfaces...');
log.info('( ' + interfaces.join(', ') + ' )');
console.log('Testing `' + package.name + '`, a Sails/Waterline adapter.');
console.log('Running `waterline-adapter-tests` against ' + interfaces.length + ' interfaces...');
console.log('( ' + interfaces.join(', ') + ' )');
console.log();
log('Latest draft of Waterline adapter interface spec:');
log('http://links.sailsjs.org/docs/plugins/adapters/interfaces');
console.log('Latest draft of Waterline adapter interface spec:');
console.log('http://links.sailsjs.org/docs/plugins/adapters/interfaces');
console.log();


Expand Down Expand Up @@ -75,7 +74,7 @@ new TestRunner({
// The set of adapter interfaces to test against.
// (grabbed these from this adapter's package.json file above)
interfaces: interfaces,

// The set of adapter features to test against.
// (grabbed these from this adapter's package.json file above)
features: features,
Expand Down

0 comments on commit d40c683

Please sign in to comment.