export function testApp()

in src/app.ts [26:31]


export function testApp(): testApp.App {
  if (typeof testApp.singleton === 'undefined') {
    testApp.init();
  }
  return testApp.singleton;
}