1
0
mirror of https://github.com/MikeMcl/decimal.js.git synced 2026-09-22 20:04:09 +00:00

Add newline to single test results

This commit is contained in:
Michael Mclaughlin
2016-03-09 22:54:34 +00:00
parent 6ec2449a07
commit ff621c1e35
3 changed files with 7 additions and 7 deletions

View File

@@ -2,7 +2,7 @@ var time = new Date(),
passed = 0,
total = 0;
console.log('\n Testing decimal.js');
console.log('\n Testing decimal.js\n');
[
'abs',
@@ -63,7 +63,7 @@ console.log('\n Testing decimal.js');
'toSD',
'toString',
'trunc',
'valueOf',
'valueOf'
]
.forEach(function (module) {
require('./modules/' + module);
@@ -72,4 +72,4 @@ console.log('\n Testing decimal.js');
});
time = new Date() - time;
console.log('\n\n In total, ' + passed + ' of ' + total + ' tests passed in ' + (time / 1e3) + ' secs.\n');
console.log('\n In total, ' + passed + ' of ' + total + ' tests passed in ' + (time / 1e3) + ' secs.\n');