diff --git a/Readme.md b/Readme.md index 67c52db..fd45d22 100644 --- a/Readme.md +++ b/Readme.md @@ -108,13 +108,11 @@ meanings although they can be used with interpolations. Dialect is heavily tested using a mix of Vows and node asserts module. - npm install eyes - make test ## Benchmarks -Dialect should not add an overhead to your application on gettinc translations. +Dialect should not add an overhead to your application on getting translations. Please run/add benchmarks to ensure that this module performance rocks. node benchmakrs/app.js diff --git a/test/integration_test.js b/test/integration_test.js index 4910cdf..436f9d2 100644 --- a/test/integration_test.js +++ b/test/integration_test.js @@ -1,5 +1,3 @@ -GLOBAL.inspect = require('eyes').inspector({ styles: { all: 'yellow', label: 'underline', other: 'inverted', key: 'bold', special: 'grey', string: 'green', number: 'red', bool: 'blue', regexp: 'green' }, maxLength: 9999999999 }); - var fs = require('fs'), assert = require('assert'), funk = require('./../support/funk/lib/funk'), @@ -14,15 +12,15 @@ var fs = require('fs'), funktion.apply(this, args); } catch (exc) { passed_tests -= 1; - inspect(exc); + console.log(exc); } }, exit = function () { exits += 1; if (exits === 4) { - inspect('Tests finshed!'); - inspect(passed_tests + '/' + num_tests); + console.log('Tests finshed!'); + console.log(passed_tests + '/' + num_tests); process.exit(0); } };