Skip to content

Commit

Permalink
fix(ts-minbar-test-react-components): tweak type errors exposed in ts…
Browse files Browse the repository at this point in the history
… 4.5
  • Loading branch information
Hotell committed May 25, 2023
1 parent eb2a9a4 commit abed567
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/ts-minbar-test-react-components/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ async function performTest() {
await shEcho(`yarn --version`);
await shEcho(`yarn tsc --version`);
await shEcho(`yarn tsc --version`, tempPaths.testApp);
} catch (e) {
} catch (err) {
console.error('Something went wrong setting up the test:');
console.error(e?.stack || e);
console.error(err instanceof Error ? err?.stack : err);
process.exit(1);
}

Expand Down

0 comments on commit abed567

Please sign in to comment.