(args)
| 115 | Application.run({ |
| 116 | create: (): Page => { |
| 117 | let onLoadedHandler = function(args) { |
| 118 | root.off("loaded", onLoadedHandler); |
| 119 | // profiling.stop('application-start'); |
| 120 | |
| 121 | // profiling.start('ng-bootstrap'); |
| 122 | console.log("BOOTSTRAPPING TEST APPS..."); |
| 123 | |
| 124 | platform.bootstrapModule(SinglePageModule); |
| 125 | platform.bootstrapModule(MultiPageModule); |
| 126 | platform.bootstrapModule(LazyLoadModule); |
| 127 | }; |
| 128 | |
| 129 | root.on("loaded", onLoadedHandler); |
| 130 |
nothing calls this directly
no test coverage detected