test: fix

This commit is contained in:
Zoltan Kochan
2022-06-02 11:54:01 +03:00
parent f2592de192
commit cb8cd3d79d
3 changed files with 3 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
import parsePref from '@pnpm/git-resolver/lib/parsePref'
import parsePref from '../lib/parsePref'
test.each([
['ssh://username:password@example.com:repo.git', 'ssh://username:password@example.com/repo.git'],

View File

@@ -1,4 +1,4 @@
import createPackagesSearcher from '@pnpm/list/lib/createPackagesSearcher'
import createPackagesSearcher from '../lib/createPackagesSearcher'
test('packages searcher', () => {
{

View File

@@ -1,9 +1,9 @@
/// <reference path="../../../typings/index.d.ts"/>
import path from 'path'
import list, { forPackages as listForPackages } from '@pnpm/list'
import renderTree from '@pnpm/list/lib/renderTree'
import chalk from 'chalk'
import cliColumns from 'cli-columns'
import renderTree from '../lib/renderTree'
const DEV_DEP_ONLY_CLR = chalk.yellow
const PROD_DEP_CLR = (s: string) => s // just use the default color