Files
portfolio2023/node_modules/pino-pretty/lib/utils/join-lines-with-indentation.test.js
2023-11-24 22:35:41 +01:00

17 lines
597 B
JavaScript

'use strict'
const tap = require('tap')
const joinLinesWithIndentation = require('./join-lines-with-indentation')
tap.test('joinLinesWithIndentation adds indentation to beginning of subsequent lines', async t => {
const input = 'foo\nbar\nbaz'
const result = joinLinesWithIndentation({ input })
t.equal(result, 'foo\n bar\n baz')
})
tap.test('joinLinesWithIndentation accepts custom indentation, line breaks, and eol', async t => {
const input = 'foo\nbar\r\nbaz'
const result = joinLinesWithIndentation({ input, ident: ' ', eol: '^' })
t.equal(result, 'foo^ bar^ baz')
})