@returns {Plugins}
({
includedFilter = this.includedFilter
} = {})
| 107 | |
| 108 | /** @returns {Plugins} */ |
| 109 | getPlugins({ |
| 110 | includedFilter = this.includedFilter |
| 111 | } = {}) { |
| 112 | const plugins = new Plugins({ |
| 113 | framework: this.framework, |
| 114 | includedFilter, |
| 115 | sourcePath: this.sourcePath, |
| 116 | log: this.log, |
| 117 | warn: this.warn |
| 118 | }); |
| 119 | plugins.load(); |
| 120 | return plugins; |
| 121 | } |
| 122 | |
| 123 | /** @returns {Schemas} */ |
| 124 | getSchemas({ |
no test coverage detected