Philipp Spiess a2159e80f5
Add Windows CI (#14065)
This PR changes the GitHub action workflow for V4 to start running all
unit tests and build on both Ubuntu (our current default) _and_ Windows.
This is to ensure we catch issues with paths and other Windows-specific
things sooner. It does, however, not replace testing on Windows.
2024-07-29 16:50:06 +02:00

71 lines
2.1 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import path from 'path'
import { describe, expect, it } from 'vitest'
import { relative, wordWrap } from './renderer'
import { normalizeWindowsSeperators } from './test-helpers'
describe('relative', () => {
it('should print an absolute path relative to the current working directory', () => {
expect(normalizeWindowsSeperators(relative(path.resolve('index.css')))).toMatchInlineSnapshot(
`"./index.css"`,
)
})
it('should prefer the shortest value by default', () => {
// Shortest between absolute and relative paths
expect(normalizeWindowsSeperators(relative('index.css'))).toMatchInlineSnapshot(`"index.css"`)
})
it('should be possible to override the current working directory', () => {
expect(normalizeWindowsSeperators(relative('../utils/index.css', '..'))).toMatchInlineSnapshot(
`"./utils/index.css"`,
)
})
it('should be possible to always prefer the relative path', () => {
expect(
normalizeWindowsSeperators(
relative('index.css', process.cwd(), { preferAbsoluteIfShorter: false }),
),
).toMatchInlineSnapshot(`"./index.css"`)
})
})
describe('word wrap', () => {
it('should wrap a sentence', () => {
expect(wordWrap('The quick brown fox jumps over the lazy dog', 10)).toMatchInlineSnapshot(`
[
"The quick",
"brown fox",
"jumps over",
"the lazy",
"dog",
]
`)
expect(wordWrap('The quick brown fox jumps over the lazy dog', 30)).toMatchInlineSnapshot(`
[
"The quick brown fox jumps over",
"the lazy dog",
]
`)
})
it('should wrap a sentence with ANSI escape codes', () => {
// The ANSI escape codes are not counted in the length, but they should
// still be rendered correctly.
expect(
wordWrap(
'\x1B[31mThe\x1B[39m \x1B[32mquick\x1B[39m \x1B[34mbrown\x1B[39m \x1B[35mfox\x1B[39m jumps over the lazy dog',
10,
),
).toMatchInlineSnapshot(`
[
"The quick",
"brown fox",
"jumps over",
"the lazy",
"dog",
]
`)
})
})