Modify mocha-test-clients to use Karma (#149)

This commit is contained in:
sneakypete81
2016-12-01 22:08:31 +00:00
committed by Kumar McMillan
parent 395786e353
commit 8638cd7698
6 changed files with 116 additions and 43 deletions

View File

@@ -1,9 +1,10 @@
describe('Background', function() {
describe('ping', function() {
it('should return pong in response', function() {
it('should return pong in response', function(done) {
Background.ping(false, false, function(response) {
expect(response).to.equal('pong');
done();
});
});
});
});
});