Skip to content

Commit

Permalink
update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
nagyzsolthun committed Nov 30, 2021
1 parent fe49873 commit 5278530
Show file tree
Hide file tree
Showing 10 changed files with 27,835 additions and 4,411 deletions.
4 changes: 2 additions & 2 deletions chrome/background/modules/tts/VoiceSelector.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ describe("getSortedVoices", () => {
onVoicesChange = null;
global.speechSynthesis.addEventListener = (_,callback) => onVoicesChange = callback;
global.speechSynthesis.removeEventListener = () => {};
spyOn(global.speechSynthesis, "addEventListener").and.callThrough();
spyOn(global.speechSynthesis, "removeEventListener");
jest.spyOn(global.speechSynthesis, "addEventListener");
jest.spyOn(global.speechSynthesis, "removeEventListener");
});

it("provides voices sync if available", async () => {
Expand Down
Loading

0 comments on commit 5278530

Please sign in to comment.