Files
2016-12-01 16:08:31 -06:00

11 lines
310 B
JavaScript

describe('Background', function() {
describe('ping', function() {
it('should return pong in response', function(done) {
Background.ping(false, false, function(response) {
expect(response).to.equal('pong');
done();
});
});
});
});