Files
pnpm/exec/plugin-commands-script-runners/test/makeEnv.test.ts
Zoltan Kochan 5d5818e44f style: enforce node: protocol for builtin imports (#10951)
Add n/prefer-node-protocol rule and autofix all bare builtin imports
to use the node: prefix. Simplify the simple-import-sort builtins
pattern to just ^node: since all imports now use the prefix.
2026-03-13 07:59:51 +01:00

11 lines
386 B
TypeScript

import path from 'node:path'
import { makeEnv } from '../src/makeEnv.js'
test('makeEnv should fail if prependPaths has a path with a colon', () => {
const prependPath = `/foo/bar${path.delimiter}/baz`
expect(() => makeEnv({
prependPaths: [prependPath],
})).toThrow(`Cannot add ${prependPath} to PATH because it contains the path delimiter character (${path.delimiter})`)
})