(u, t)
| 392 | const url = 'http://example.com'; |
| 393 | const text = 'hello link'; |
| 394 | const expected = (u, t) => `\x1B]8;;${u}\x07${t}\x1B]8;;\x07`; |
| 395 | it('wraps text with link', () => { |
| 396 | expect(utils.hyperlink(url, text)).toEqual(expected(url, text)); |
| 397 | }); |
no outgoing calls
no test coverage detected
searching dependent graphs…