(orientation: number)
| 11 | } |
| 12 | |
| 13 | function imageWithOrientation2(orientation: number) { |
| 14 | const imageName = `Portrait_${orientation}.jpg`; |
| 15 | const path = __dirname + "/images/exif-orientation/" + imageName; |
| 16 | return Jimp.read(path); |
| 17 | } |
| 18 | |
| 19 | describe("EXIF orientation", () => { |
| 20 | for (let orientation = 1; orientation <= 8; orientation++) { |
no test coverage detected
searching dependent graphs…