( app )
| 176 | } |
| 177 | |
| 178 | shouldHaveRelatedVideos ( app ) { |
| 179 | const appType = getAppType( app ) |
| 180 | |
| 181 | const typeWithRelatedVideos = new Set([ |
| 182 | 'app', |
| 183 | 'formula', |
| 184 | 'game' |
| 185 | ]) |
| 186 | |
| 187 | return typeWithRelatedVideos.has( appType ) |
| 188 | } |
| 189 | |
| 190 | shouldHaveDeviceSupport ( app ) { |
| 191 | const appType = getAppType( app ) |
no test coverage detected