mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-17 23:08:33 +02:00
Modify mocha-test-clients to use Karma (#149)
This commit is contained in:
committed by
Kumar McMillan
parent
395786e353
commit
8638cd7698
@@ -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();
|
||||
});
|
||||
});
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user