We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8777776 commit c19a4a4Copy full SHA for c19a4a4
test/e2e/launch.e2e.js
@@ -59,7 +59,7 @@ describe('Application launch', function () {
59
// As a workaround, we look at console output and match on strings :<
60
const tick = 250
61
const ready = (output) => output && output.match(/(?:daemon is running|Daemon is ready|start daemon FINISHED)/)
62
- const hasPeerId = (output) => output && output.match(/PeerID is (\w+)$/)
+ const hasPeerId = (output) => output && output.trim().match(/PeerID is (\w+)$/)
63
let peerId
64
while (true) {
65
const logs = await app.client.getMainProcessLogs()
0 commit comments