UNPKG
mongo-metrics
Version:
latest (0.1.4)
0.1.4
0.1.3
0.1.2
0.1.1
Tracking Metrics with MongoDb
arunoda/mongo-metrics
mongo-metrics
/
test
/
index.js
12 lines
(8 loc)
•
211 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env node
var
Mocha
=
require
(
'mocha'
);
var
mocha =
new
Mocha
; mocha.
reporter
(
'spec'
).
ui
(
'tdd'
); mocha.
addFile
(
'test/mongoMetrics.js'
);
var
runner = mocha.
run
(
function
(
){ process.
exit
(
0
); });