Skip to content

Commit

Permalink
Merge branch 'develop' into epic/opf
Browse files Browse the repository at this point in the history
  • Loading branch information
Matejk00 authored Oct 8, 2024
2 parents 51428c4 + 2d37cae commit 5e5479a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions projects/ssr-tests/src/utils/log.utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,7 @@ export function clearSsrLogFile(): void {
*/
export function getRawLogs(): string[] {
const data = fs.readFileSync(SSR_LOG_PATH).toString();
const logs = data.toString().split('\n');
return logs;
return data.toString().split('\n');
}

/**
Expand Down

0 comments on commit 5e5479a

Please sign in to comment.