/* global describe it */ require('should'); const smstoolsStatus = require('../lib/smstools-status'); describe('#smstool-status', () => { it('should return correct result', async () => { const status = await smstoolsStatus('test/data/status'); status.should.be.ok(); }); });