Files
pnpm/workspace/state/test/filePath.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

15 lines
317 B
TypeScript

import path from 'node:path'
import { prepareEmpty } from '@pnpm/prepare'
import { getFilePath } from '../src/filePath.js'
test('getFilePath()', () => {
prepareEmpty()
expect(
getFilePath(process.cwd())
).toStrictEqual(
path.resolve(path.resolve('node_modules/.pnpm-workspace-state-v1.json'))
)
})