()
| 18 | }) |
| 19 | export class CmpC { |
| 20 | componentWillLoad() { |
| 21 | return new Promise((resolve) => { |
| 22 | setTimeout(() => { |
| 23 | console.log('cmp-c componentWillLoad resolved'); |
| 24 | resolve(); |
| 25 | }, 1500); |
| 26 | }); |
| 27 | } |
| 28 | |
| 29 | render() { |
| 30 | return ( |
nothing calls this directly
no test coverage detected