(
fallbackTab: (options: { reverse: boolean }) => boolean | undefined
)
| 14 | jsxt; |
| 15 | |
| 16 | const FallbackTabPlugin = ( |
| 17 | fallbackTab: (options: { reverse: boolean }) => boolean | undefined |
| 18 | ) => |
| 19 | createSlatePlugin({ |
| 20 | key: 'fallbackTab', |
| 21 | }).overrideEditor(() => ({ |
| 22 | transforms: { |
| 23 | tab: fallbackTab, |
| 24 | }, |
| 25 | })); |
| 26 | |
| 27 | describe('withIndent', () => { |
| 28 | it('caps indent during normalization when it exceeds indentMax', () => { |
no test coverage detected
searching dependent graphs…