printTestToolTitle function

void printTestToolTitle({
  1. bool showUserAgent = true,
})

Prints the Bones_UI Test Tool title. Used by initializeTestUIRoot.

Implementation

void printTestToolTitle({
  bool showUserAgent = true,
}) {
  var userAgent = window.navigator.userAgent;

  var lines = [
    bonesUiTestToolTitle,
    if (showUserAgent) '» User Agent: $userAgent',
    if (isHeadlessUI()) '» Headless',
  ];

  print(
      '╔═════════════════════════════════════════════════════════════════════\n'
      '${lines.map((l) => '║ $l\n').join()}'
      '╚═════════════════════════════════════════════════════════════════════');
}