Skip to content

Commit 458a200

Browse files
committed
fix linting
1 parent 953e13d commit 458a200

File tree

1 file changed

+11
-9
lines changed

1 file changed

+11
-9
lines changed

dev-packages/e2e-tests/lib/getTestMatrix.ts

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -94,15 +94,17 @@ function getSentryDependencies(appName: string): string[] {
9494
return Object.keys(dependencies).filter(key => key.startsWith('@sentry'));
9595
}
9696

97-
function getPackageJson(appName: string): {
98-
dependencies?: { [key: string]: string };
99-
devDependencies?: { [key: string]: string };
100-
sentryTest?: {
101-
optional?: boolean;
102-
variants?: Partial<MatrixInclude>[];
103-
optionalVariants?: Partial<MatrixInclude>[];
104-
};
105-
} | undefined {
97+
function getPackageJson(appName: string):
98+
| {
99+
dependencies?: { [key: string]: string };
100+
devDependencies?: { [key: string]: string };
101+
sentryTest?: {
102+
optional?: boolean;
103+
variants?: Partial<MatrixInclude>[];
104+
optionalVariants?: Partial<MatrixInclude>[];
105+
};
106+
}
107+
| undefined {
106108
const fullPath = path.resolve(__dirname, '..', 'test-applications', appName, 'package.json');
107109

108110
// This can happen if you e.g. have a leftover directory in test-applications

0 commit comments

Comments
 (0)