Skip to content

Commit

Permalink
remove tests
Browse files Browse the repository at this point in the history
  • Loading branch information
lucas-zimerman committed Dec 3, 2024
1 parent d5f3bbf commit 7b5c8db
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions scripts/check-siblings.js
Original file line number Diff line number Diff line change
Expand Up @@ -150,10 +150,7 @@ function CheckSiblings() {
let rootPath = GetPackageJsonRootPath();
let incompatiblePackages = [];
const packageJson = fs.readFileSync(rootPath + 'package.json', 'utf8').split("\n");

LogE2E("TEST " + fs.readFileSync(rootPath + "node_modules/@sentry/angular/" +'package.json', 'utf8'));
for (const lineData of packageJson) {
LogE2E("test " + lineData);
let sentryRef = lineData.match(jsonFilter);
if (sentryRef && sentryRef[2] !== siblingVersion && !sentryRef[2].includes('%3A' + siblingVersion + '#')) {
incompatiblePackages.push(['@sentry/' + sentryRef[1], sentryRef[2]]);
Expand Down

0 comments on commit 7b5c8db

Please sign in to comment.