Export realtime game statistics to disk in JSON and other formats.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
257 B

var macros = require('./macros');
//
// Our `gauges` tests
// Should match `tests/fixtures/gauges.json`
//
macros.matchFixturesTest('gauges', function runTest(connection) {
connection.gauge('foo.gauge.1', 500);
connection.gauge('foo.gauge.2', 15);
});