()
| 74 | } |
| 75 | |
| 76 | afterInsert () { |
| 77 | super.afterInsert() |
| 78 | return Promise.all( |
| 79 | ['python', 'coffeescript', 'lua'].map( |
| 80 | loadAetherLanguage |
| 81 | ) |
| 82 | ).then(() => { |
| 83 | this.initSpecFiles() |
| 84 | this.render() |
| 85 | TestView.runTests(this.specFiles, this.demosOn, this) |
| 86 | return window.runJasmine() |
| 87 | }) |
| 88 | } |
| 89 | |
| 90 | // EVENTS |
| 91 |
nothing calls this directly
no test coverage detected