/
githubmirror
/
lerna
Обзор
Документация
Войти
/
githubmirror
/
lerna
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
e2e/init/src/init-npm.spec.ts
94 строки
2 KB
Austin Fahsl
feat(init): detect existing package manager and auto-install packages (#3805)
15 авг 2023, 22:00
Не верифицирован
15 авг 2023, 22:00
2204c34
Код
Авторство
О чём код?
import { Fixture, normalizeEnvironment } from "@lerna/e2e-utils"; import { writeFileSync } from "fs-extra"; expect.addSnapshotSerializer({ serialize(str: string) { return normalizeEnvironment(str); }, test(val: string) { return val != null && typeof val === "string"; }, }); describe("lerna-init-npm", () => { let fixture: Fixture; beforeEach(async () => { fixture = await Fixture.create({ e2eRoot: process.env.E2E_ROOT, name: "lerna-init-npm", packageManager: "npm", initializeGit: false, lernaInit: false, installDependencies: false, }); writeFileSync( fixture.getWorkspacePath("package.json"), JSON.stringify({ name: "root", private: true, workspaces: ["packages/*"], }) ); await fixture.install(); }); afterEach(() => fixture.destroy()); it("should not set npmClient in lerna.json", async () => { const result = await fixture.lernaInit(); expect(result.combinedOutput).toMatchInlineSnapshot(` lerna notice cli v999.9.9-e2e.0 lerna info Applying the following file system updates: CREATE lerna.json UPDATE package.json CREATE .gitignore lerna info Initializing Git repository lerna info Using npm to install packages lerna success Initialized Lerna files lerna info New to Lerna? Check out the docs: https://lerna.js.org/docs/getting-started `); const lernaJson = await fixture.readWorkspaceFile("lerna.json"); expect(lernaJson).toMatchInlineSnapshot(` { "$schema": "node_modules/lerna/schemas/lerna-schema.json", "version": "0.0.0" } `); }); describe("--skip-install", () => { it("should not install packages", async () => { const result = await fixture.lernaInit("--skip-install"); expect(result.combinedOutput).toMatchInlineSnapshot(` lerna notice cli v999.9.9-e2e.0 lerna info Applying the following file system updates: CREATE lerna.json UPDATE package.json CREATE .gitignore lerna info Initializing Git repository lerna success Initialized Lerna files lerna info New to Lerna? Check out the docs: https://lerna.js.org/docs/getting-started `); const lernaJson = await fixture.readWorkspaceFile("lerna.json"); expect(lernaJson).toMatchInlineSnapshot(` { "$schema": "node_modules/lerna/schemas/lerna-schema.json", "version": "0.0.0" } `); }); }); });