Skip to content

Commit

Permalink
don't log error when it is just status check
Browse files Browse the repository at this point in the history
  • Loading branch information
kstekovi committed Aug 11, 2023
1 parent e0e52b5 commit 6c4211e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/testsuite/cypress.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,8 @@ export default defineConfig({
resolve(wildflyServer);
}
})
.catch((error) => {
console.log(error);
.catch(() => {
console.log("Wildfly server in not ready yet");
});
}, 500);
});
Expand Down

0 comments on commit 6c4211e

Please sign in to comment.