(doc, n = 0)
| 115 | describe('handling attributes', function () { |
| 116 | it('for emphasis', function () { |
| 117 | const items = (doc, n = 0) => |
| 118 | doc.children[0].children[0].children[n].attributes.marker; |
| 119 | |
| 120 | const example1 = convert(`a*b*c`); |
| 121 | expect(items(example1, 1)).toEqual('*'); |
no outgoing calls
no test coverage detected
searching dependent graphs…