* chore: remove old files * chore: change JS tests to TS, delete dummy tests * chore: bump manifests version
13 lines
319 B
TypeScript
13 lines
319 B
TypeScript
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);
|
|
});
|
|
});
|