joyent-portal/control-tower/test/index.js

21 lines
376 B
JavaScript
Raw Normal View History

2017-05-13 00:46:39 +03:00
'use strict';
const Code = require('code');
const Lab = require('lab');
// Test shortcuts
const lab = exports.lab = Lab.script();
const describe = lab.describe;
const it = lab.it;
const expect = Code.expect;
describe('start()', () => {
it.skip('starts to listen for service changes and monitors metrics', (done) => {
2017-05-15 21:18:18 +03:00
expect(done).to.exist();
2017-05-13 00:46:39 +03:00
done();
});
});