Files
browser-wakatime/tests/utils/Chrome.spec.ts
Juan Sebastian velez Posada 35543489e5 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
2023-02-22 08:11:16 -05:00

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);
});
});