| 3 | import { getEditorText } from '../src/quicklook/editor'; |
| 4 | |
| 5 | interface MutableWindow { |
| 6 | editor?: { state?: { doc: { toString(): string } } }; |
| 7 | config?: { text?: string }; |
| 8 | } |
| 9 | |
| 10 | const mutableWindow = window as unknown as MutableWindow; |
| 11 | beforeEach(() => { |
nothing calls this directly
no outgoing calls
no test coverage detected