(input: HTMLInputElement, value: string)
| 51 | } |
| 52 | |
| 53 | function inputValue(input: HTMLInputElement, value: string) { |
| 54 | input.value = value; |
| 55 | input.dispatchEvent(new Event("input", { bubbles: true })); |
| 56 | } |
| 57 | |
| 58 | describe("UserScriptSettingsModal secret settings", () => { |
| 59 | afterEach(() => { |
no test coverage detected