Propmt when a api key can not be use + house keeping (#173)
* chore: remove old files * chore: change JS tests to TS, delete dummy tests * chore: bump manifests version
This commit is contained in:
committed by
GitHub
parent
fe49f50b65
commit
35543489e5
12
tests/utils/Chrome.spec.ts
Normal file
12
tests/utils/Chrome.spec.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
import chai from 'chai';
|
||||
import sinon from 'sinon';
|
||||
import chrome from 'sinon-chrome';
|
||||
|
||||
const expect = chai.expect;
|
||||
|
||||
describe('Chrome Dev Tools', function () {
|
||||
it('should work', function () {
|
||||
chrome.browserAction.setTitle({ title: 'hello' });
|
||||
sinon.assert.calledOnce(chrome.browserAction.setTitle);
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user