Files
browser-wakatime/tests/utils/Chrome.spec.ts
2024-08-31 17:51:40 +06:00

10 lines
289 B
TypeScript

const sinon = require('sinon/pkg/sinon.js');
import chrome from 'sinon-chrome';
describe('Chrome Dev Tools', function () {
it('should work', async function () {
chrome.browserAction.setTitle({ title: 'hello' });
sinon.assert.calledOnce(chrome.browserAction.setTitle);
});
});