Skip to content

Commit

Permalink
reduce complexity and use default npm
Browse files Browse the repository at this point in the history
  • Loading branch information
lucas-zimerman committed Feb 3, 2025
1 parent b40bded commit 11af74f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
{
}
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
import path from 'path';
const { execSync } = require("child_process");

import { ClearE2ETestFolder, CreateE2EPackage, CreateE2EStartPackage, e2ePath, GetE2ELogs, GetInitialE2EPackage, GetLogs, GetPackageManagerVersion, InstallSDK, InvalidSentrySiblingVersion, readJsonOrEmpty, SDKPath, ValidSentrySiblingVersion } from './check-siblingsHelper';

const CapacitorInstallArg = `file:${SDKPath}`

describe('NPM 10 tests', () => {
const npme2ePath = path.join(e2ePath, 'npm10');
const PackageMangerVersion = "10.9.2";
describe('NPM tests', () => {
const npme2ePath = path.join(e2ePath, 'npm_default');
const PackageMangerVersion = execSync("npm --version").toString().trim();

describe('new Install', () => {
test('no warnings when correct sibling is installed', async () => {
Expand Down

0 comments on commit 11af74f

Please sign in to comment.