mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-16 14:28:33 +02:00
11 lines
310 B
JavaScript
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();
|
|
});
|
|
});
|
|
});
|
|
});
|