Skip to content

e2e: Optimize waiting for application to start #1654

@Timer

Description

@Timer

We had to switch from

$ grep -q 'The app is running at:' <(tail -f $tmp_server_log)

to

while true
do
  if grep -q 'The app is running at:' $tmp_server_log; then
    break
  else
    sleep 1
  fi
done

I would appreciate a bash expert one-lining this again with cygwin support.

Metadata

Metadata

Assignees

No one assigned

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions