(text, styles = [])
| 6 | import {clearScreen, clearScreenDown, clearScreenUp, format, moveCursorUp, moveToPosition} from './terminal_test_utils'; |
| 7 | |
| 8 | function styledNode(text, styles = []) { |
| 9 | return { |
| 10 | 'type': 'styledNode', |
| 11 | 'text': text, |
| 12 | 'styles': styles |
| 13 | } |
| 14 | } |
| 15 | |
| 16 | function styledComplexNode(styles = [], children) { |
| 17 | return { |
no outgoing calls
no test coverage detected