@invarn/cibuild 2.0.6 → 2.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1003,142 +1003,167 @@ function compileAssetCatalogs(packageDir, harnessDir) {
1003
1003
  * a tighter image for the human's judgment and computes nothing about
1004
1004
  * fidelity.
1005
1005
  */
1006
- const RENDER_SCRIPT_TRIM_STAGE = String.raw `
1007
- // ---- render trimming stage (package_source variants) ----
1008
-
1009
- // CoreGraphics helper, run via 'swift <Trim.swift> <in.png> <out.png>'
1010
- // (script-interpreter mode). Crops a PNG to the bounding box of its
1011
- // non-transparent pixels and writes it to the output path, which may equal the
1012
- // input path (in-place trim).
1013
- var TRIM_HELPER_SWIFT = [
1014
- 'import Foundation',
1015
- 'import ImageIO',
1016
- 'import CoreGraphics',
1017
- 'import UniformTypeIdentifiers',
1018
- '',
1019
- 'func loadCGImage(_ path: String) -> CGImage? {',
1020
- ' guard let src = CGImageSourceCreateWithURL(URL(fileURLWithPath: path) as CFURL, nil),',
1021
- ' let img = CGImageSourceCreateImageAtIndex(src, 0, nil) else { return nil }',
1022
- ' return img',
1023
- '}',
1024
- '',
1025
- 'func writePNG(_ image: CGImage, to path: String) -> Bool {',
1026
- ' guard let dest = CGImageDestinationCreateWithURL(URL(fileURLWithPath: path) as CFURL, UTType.png.identifier as CFString, 1, nil) else { return false }',
1027
- ' CGImageDestinationAddImage(dest, image, nil)',
1028
- ' return CGImageDestinationFinalize(dest)',
1029
- '}',
1030
- '',
1031
- '// Redraw an image at an exact pixel size (used to match the reference).',
1032
- 'func resize(_ image: CGImage, toWidth w: Int, height h: Int) -> CGImage? {',
1033
- ' if w <= 0 || h <= 0 { return nil }',
1034
- ' let bytesPerRow = w * 4',
1035
- ' let space = CGColorSpaceCreateDeviceRGB()',
1036
- ' guard let ctx = CGContext(data: nil, width: w, height: h, bitsPerComponent: 8, bytesPerRow: bytesPerRow, space: space, bitmapInfo: CGImageAlphaInfo.premultipliedLast.rawValue) else { return nil }',
1037
- ' ctx.interpolationQuality = .high',
1038
- ' ctx.draw(image, in: CGRect(x: 0, y: 0, width: w, height: h))',
1039
- ' return ctx.makeImage()',
1040
- '}',
1041
- '',
1042
- '// Bounding box of content: pixels that are neither transparent nor part of a',
1043
- '// uniform solid background. The background is detected from the four corners',
1044
- '// (opaque and agreeing within a tight tolerance); when the corners disagree,',
1045
- '// only transparency is trimmed. Top-left image coordinates.',
1046
- 'func contentBoundingBox(_ image: CGImage) -> CGRect? {',
1047
- ' let w = image.width, h = image.height',
1048
- ' if w == 0 || h == 0 { return nil }',
1049
- ' let bytesPerRow = w * 4',
1050
- ' var data = [UInt8](repeating: 0, count: bytesPerRow * h)',
1051
- ' let space = CGColorSpaceCreateDeviceRGB()',
1052
- ' guard let ctx = CGContext(data: &data, width: w, height: h, bitsPerComponent: 8, bytesPerRow: bytesPerRow, space: space, bitmapInfo: CGImageAlphaInfo.premultipliedLast.rawValue) else { return nil }',
1053
- ' ctx.draw(image, in: CGRect(x: 0, y: 0, width: w, height: h))',
1054
- ' // Tight tolerance: exact solid fills match, near-colored content does not.',
1055
- ' let tolerance = 4',
1056
- ' func sample(_ x: Int, _ y: Int) -> (Int, Int, Int, Int) {',
1057
- ' let i = y * bytesPerRow + x * 4',
1058
- ' return (Int(data[i]), Int(data[i + 1]), Int(data[i + 2]), Int(data[i + 3]))',
1059
- ' }',
1060
- ' // Detect a uniform opaque background shared by all four corners.',
1061
- ' let corners = [sample(0, 0), sample(w - 1, 0), sample(0, h - 1), sample(w - 1, h - 1)]',
1062
- ' var background: (Int, Int, Int, Int)? = corners[0]',
1063
- ' for c in corners {',
1064
- ' if let bg = background {',
1065
- ' if c.3 == 0 || abs(c.0 - bg.0) > tolerance || abs(c.1 - bg.1) > tolerance || abs(c.2 - bg.2) > tolerance || abs(c.3 - bg.3) > tolerance {',
1066
- ' background = nil',
1067
- ' }',
1068
- ' }',
1069
- ' }',
1070
- ' var minX = w, minY = h, maxX = -1, maxY = -1',
1071
- ' for y in 0..<h {',
1072
- ' let rowBase = y * bytesPerRow',
1073
- ' for x in 0..<w {',
1074
- ' let idx = rowBase + x * 4',
1075
- ' let a = Int(data[idx + 3])',
1076
- ' var isMargin = a == 0',
1077
- ' if !isMargin, let bg = background {',
1078
- ' let r = Int(data[idx]), g = Int(data[idx + 1]), b = Int(data[idx + 2])',
1079
- ' if abs(r - bg.0) <= tolerance && abs(g - bg.1) <= tolerance && abs(b - bg.2) <= tolerance && abs(a - bg.3) <= tolerance {',
1080
- ' isMargin = true',
1081
- ' }',
1082
- ' }',
1083
- ' if !isMargin {',
1084
- ' if x < minX { minX = x }',
1085
- ' if x > maxX { maxX = x }',
1086
- ' if y < minY { minY = y }',
1087
- ' if y > maxY { maxY = y }',
1088
- ' }',
1089
- ' }',
1090
- ' }',
1091
- ' if maxX < 0 { return nil }',
1092
- ' return CGRect(x: minX, y: minY, width: maxX - minX + 1, height: maxY - minY + 1)',
1093
- '}',
1094
- '',
1095
- 'let arguments = CommandLine.arguments',
1096
- 'guard arguments.count >= 3 else {',
1097
- ' FileHandle.standardError.write(Data("usage: Trim <in.png> <out.png>".utf8))',
1098
- ' exit(64)',
1099
- '}',
1100
- 'let inputPath = arguments[1]',
1101
- 'let outputPath = arguments[2]',
1102
- 'guard let image = loadCGImage(inputPath) else {',
1103
- ' FileHandle.standardError.write(Data(("could not read image at " + inputPath).utf8))',
1104
- ' exit(65)',
1105
- '}',
1106
- 'guard let box = contentBoundingBox(image) else {',
1107
- ' FileHandle.standardError.write(Data("no content to trim (image is uniform)".utf8))',
1108
- ' exit(66)',
1109
- '}',
1110
- 'guard let cropped = image.cropping(to: box) else {',
1111
- ' FileHandle.standardError.write(Data("could not crop image".utf8))',
1112
- ' exit(67)',
1113
- '}',
1114
- 'let croppedWidth = cropped.width',
1115
- 'let croppedHeight = cropped.height',
1116
- 'guard writePNG(cropped, to: outputPath) else {',
1117
- ' FileHandle.standardError.write(Data(("could not write trimmed PNG to " + outputPath).utf8))',
1118
- ' exit(68)',
1119
- '}',
1120
- '',
1121
- '// Optional aligned output: the trimmed image resized to the reference pixel',
1122
- '// size, a 1:1 overlay pair. Best-effort; dimensions are reported either way.',
1123
- 'var referenceWidth = 0',
1124
- 'var referenceHeight = 0',
1125
- 'if arguments.count >= 5 {',
1126
- ' let alignedPath = arguments[3]',
1127
- ' let referencePath = arguments[4]',
1128
- ' if let reference = loadCGImage(referencePath) {',
1129
- ' referenceWidth = reference.width',
1130
- ' referenceHeight = reference.height',
1131
- ' if let aligned = resize(cropped, toWidth: referenceWidth, height: referenceHeight) {',
1132
- ' _ = writePNG(aligned, to: alignedPath)',
1133
- ' }',
1134
- ' }',
1135
- '}',
1136
- '',
1137
- '// Report: rendered (trimmed) px, reference px (0 0 when unavailable), then',
1138
- '// the pre-trim source px so the caller can log how much margin was removed.',
1139
- 'print("TRIMDIMS " + String(croppedWidth) + " " + String(croppedHeight) + " " + String(referenceWidth) + " " + String(referenceHeight) + " " + String(image.width) + " " + String(image.height))'
1006
+ /**
1007
+ * The CoreGraphics trim/align helper source, run via
1008
+ * `swift <Trim.swift> <in> <out> <aligned> <ref>` (script-interpreter mode).
1009
+ * Crops a PNG to its content bounding box (transparent or uniform-background
1010
+ * margins), writes a reference-sized aligned copy, and prints a TRIMDIMS line.
1011
+ *
1012
+ * Exported so a real-toolchain test can exercise the pixel logic directly --
1013
+ * the fake `swift` in the unit tests cannot, which is why a background-detection
1014
+ * bug shipped twice undetected before a real-pixel guard existed.
1015
+ */
1016
+ export const TRIM_HELPER_SWIFT_SOURCE = [
1017
+ 'import Foundation',
1018
+ 'import ImageIO',
1019
+ 'import CoreGraphics',
1020
+ 'import UniformTypeIdentifiers',
1021
+ '',
1022
+ 'func loadCGImage(_ path: String) -> CGImage? {',
1023
+ ' guard let src = CGImageSourceCreateWithURL(URL(fileURLWithPath: path) as CFURL, nil),',
1024
+ ' let img = CGImageSourceCreateImageAtIndex(src, 0, nil) else { return nil }',
1025
+ ' return img',
1026
+ '}',
1027
+ '',
1028
+ 'func writePNG(_ image: CGImage, to path: String) -> Bool {',
1029
+ ' guard let dest = CGImageDestinationCreateWithURL(URL(fileURLWithPath: path) as CFURL, UTType.png.identifier as CFString, 1, nil) else { return false }',
1030
+ ' CGImageDestinationAddImage(dest, image, nil)',
1031
+ ' return CGImageDestinationFinalize(dest)',
1032
+ '}',
1033
+ '',
1034
+ '// Redraw an image at an exact pixel size (used to match the reference).',
1035
+ 'func resize(_ image: CGImage, toWidth w: Int, height h: Int) -> CGImage? {',
1036
+ ' if w <= 0 || h <= 0 { return nil }',
1037
+ ' let bytesPerRow = w * 4',
1038
+ ' let space = CGColorSpaceCreateDeviceRGB()',
1039
+ ' guard let ctx = CGContext(data: nil, width: w, height: h, bitsPerComponent: 8, bytesPerRow: bytesPerRow, space: space, bitmapInfo: CGImageAlphaInfo.premultipliedLast.rawValue) else { return nil }',
1040
+ ' ctx.interpolationQuality = .high',
1041
+ ' ctx.draw(image, in: CGRect(x: 0, y: 0, width: w, height: h))',
1042
+ ' return ctx.makeImage()',
1043
+ '}',
1044
+ '',
1045
+ '// Bounding box of content: pixels that are neither transparent nor part of a',
1046
+ '// uniform solid background. Two passes, because the renderer forces the view',
1047
+ '// into a fixed device frame whose margins are transparent: (1) bound the',
1048
+ '// non-transparent pixels, then (2) detect a uniform opaque background from the',
1049
+ '// CORNERS OF THAT OPAQUE BOX -- not the raw frame, whose corners are the',
1050
+ '// transparent device margin -- and bound everything that is not that',
1051
+ '// background. A wrapper that fills the canvas with .background(.white) is thus',
1052
+ '// trimmed to its real content. When the opaque corners disagree, only',
1053
+ '// transparency is trimmed. Top-left image coordinates.',
1054
+ 'func contentBoundingBox(_ image: CGImage) -> CGRect? {',
1055
+ ' let w = image.width, h = image.height',
1056
+ ' if w == 0 || h == 0 { return nil }',
1057
+ ' let bytesPerRow = w * 4',
1058
+ ' var data = [UInt8](repeating: 0, count: bytesPerRow * h)',
1059
+ ' let space = CGColorSpaceCreateDeviceRGB()',
1060
+ ' guard let ctx = CGContext(data: &data, width: w, height: h, bitsPerComponent: 8, bytesPerRow: bytesPerRow, space: space, bitmapInfo: CGImageAlphaInfo.premultipliedLast.rawValue) else { return nil }',
1061
+ ' ctx.draw(image, in: CGRect(x: 0, y: 0, width: w, height: h))',
1062
+ ' // Tight tolerance: exact solid fills match, near-colored content does not.',
1063
+ ' let tolerance = 4',
1064
+ ' func sample(_ x: Int, _ y: Int) -> (Int, Int, Int, Int) {',
1065
+ ' let i = y * bytesPerRow + x * 4',
1066
+ ' return (Int(data[i]), Int(data[i + 1]), Int(data[i + 2]), Int(data[i + 3]))',
1067
+ ' }',
1068
+ ' // Pass 1: bounding box of all non-transparent pixels.',
1069
+ ' var aMinX = w, aMinY = h, aMaxX = -1, aMaxY = -1',
1070
+ ' for y in 0..<h {',
1071
+ ' let rowBase = y * bytesPerRow',
1072
+ ' for x in 0..<w {',
1073
+ ' if data[rowBase + x * 4 + 3] > 0 {',
1074
+ ' if x < aMinX { aMinX = x }',
1075
+ ' if x > aMaxX { aMaxX = x }',
1076
+ ' if y < aMinY { aMinY = y }',
1077
+ ' if y > aMaxY { aMaxY = y }',
1078
+ ' }',
1079
+ ' }',
1080
+ ' }',
1081
+ ' if aMaxX < 0 { return nil }',
1082
+ ' let opaqueBox = CGRect(x: aMinX, y: aMinY, width: aMaxX - aMinX + 1, height: aMaxY - aMinY + 1)',
1083
+ ' // Detect a uniform opaque background from the corners of the opaque box.',
1084
+ ' let corners = [sample(aMinX, aMinY), sample(aMaxX, aMinY), sample(aMinX, aMaxY), sample(aMaxX, aMaxY)]',
1085
+ ' var background: (Int, Int, Int, Int)? = corners[0]',
1086
+ ' for c in corners {',
1087
+ ' if let bg = background {',
1088
+ ' if c.3 == 0 || abs(c.0 - bg.0) > tolerance || abs(c.1 - bg.1) > tolerance || abs(c.2 - bg.2) > tolerance || abs(c.3 - bg.3) > tolerance {',
1089
+ ' background = nil',
1090
+ ' }',
1091
+ ' }',
1092
+ ' }',
1093
+ ' // No uniform background: the opaque box is the content.',
1094
+ ' guard let bg = background else { return opaqueBox }',
1095
+ ' // Pass 2: within the opaque box, bound everything that is not the background.',
1096
+ ' var minX = aMaxX + 1, minY = aMaxY + 1, maxX = aMinX - 1, maxY = aMinY - 1',
1097
+ ' for y in aMinY...aMaxY {',
1098
+ ' let rowBase = y * bytesPerRow',
1099
+ ' for x in aMinX...aMaxX {',
1100
+ ' let idx = rowBase + x * 4',
1101
+ ' let a = Int(data[idx + 3])',
1102
+ ' if a == 0 { continue }',
1103
+ ' let r = Int(data[idx]), g = Int(data[idx + 1]), b = Int(data[idx + 2])',
1104
+ ' if abs(r - bg.0) <= tolerance && abs(g - bg.1) <= tolerance && abs(b - bg.2) <= tolerance && abs(a - bg.3) <= tolerance { continue }',
1105
+ ' if x < minX { minX = x }',
1106
+ ' if x > maxX { maxX = x }',
1107
+ ' if y < minY { minY = y }',
1108
+ ' if y > maxY { maxY = y }',
1109
+ ' }',
1110
+ ' }',
1111
+ ' // All background, no distinct content: keep the opaque box, never crop to nothing.',
1112
+ ' if maxX < minX { return opaqueBox }',
1113
+ ' return CGRect(x: minX, y: minY, width: maxX - minX + 1, height: maxY - minY + 1)',
1114
+ '}',
1115
+ '',
1116
+ 'let arguments = CommandLine.arguments',
1117
+ 'guard arguments.count >= 3 else {',
1118
+ ' FileHandle.standardError.write(Data("usage: Trim <in.png> <out.png>".utf8))',
1119
+ ' exit(64)',
1120
+ '}',
1121
+ 'let inputPath = arguments[1]',
1122
+ 'let outputPath = arguments[2]',
1123
+ 'guard let image = loadCGImage(inputPath) else {',
1124
+ ' FileHandle.standardError.write(Data(("could not read image at " + inputPath).utf8))',
1125
+ ' exit(65)',
1126
+ '}',
1127
+ 'guard let box = contentBoundingBox(image) else {',
1128
+ ' FileHandle.standardError.write(Data("no content to trim (image is uniform)".utf8))',
1129
+ ' exit(66)',
1130
+ '}',
1131
+ 'guard let cropped = image.cropping(to: box) else {',
1132
+ ' FileHandle.standardError.write(Data("could not crop image".utf8))',
1133
+ ' exit(67)',
1134
+ '}',
1135
+ 'let croppedWidth = cropped.width',
1136
+ 'let croppedHeight = cropped.height',
1137
+ 'guard writePNG(cropped, to: outputPath) else {',
1138
+ ' FileHandle.standardError.write(Data(("could not write trimmed PNG to " + outputPath).utf8))',
1139
+ ' exit(68)',
1140
+ '}',
1141
+ '',
1142
+ '// Optional aligned output: the trimmed image resized to the reference pixel',
1143
+ '// size, a 1:1 overlay pair. Best-effort; dimensions are reported either way.',
1144
+ 'var referenceWidth = 0',
1145
+ 'var referenceHeight = 0',
1146
+ 'if arguments.count >= 5 {',
1147
+ ' let alignedPath = arguments[3]',
1148
+ ' let referencePath = arguments[4]',
1149
+ ' if let reference = loadCGImage(referencePath) {',
1150
+ ' referenceWidth = reference.width',
1151
+ ' referenceHeight = reference.height',
1152
+ ' if let aligned = resize(cropped, toWidth: referenceWidth, height: referenceHeight) {',
1153
+ ' _ = writePNG(aligned, to: alignedPath)',
1154
+ ' }',
1155
+ ' }',
1156
+ '}',
1157
+ '',
1158
+ '// Report: rendered (trimmed) px, reference px (0 0 when unavailable), then',
1159
+ '// the pre-trim source px so the caller can log how much margin was removed.',
1160
+ 'print("TRIMDIMS " + String(croppedWidth) + " " + String(croppedHeight) + " " + String(referenceWidth) + " " + String(referenceHeight) + " " + String(image.width) + " " + String(image.height))'
1140
1161
  ].join('\n') + '\n';
1141
-
1162
+ const RENDER_SCRIPT_TRIM_STAGE = '\n// ---- render trimming stage (package_source variants) ----\n' +
1163
+ 'var TRIM_HELPER_SWIFT = ' +
1164
+ JSON.stringify(TRIM_HELPER_SWIFT_SOURCE) +
1165
+ ';\n' +
1166
+ String.raw `
1142
1167
  // Write the helper into the harness dir once (idempotent across screens).
1143
1168
  function ensureTrimHelper(harnessDir) {
1144
1169
  var helperPath = path.join(harnessDir, 'Trim.swift');
@@ -21,7 +21,7 @@ import { chmodSync, existsSync, mkdirSync, mkdtempSync, readdirSync, readFileSyn
21
21
  import { tmpdir } from 'node:os';
22
22
  import { dirname, join, resolve } from 'node:path';
23
23
  import { fileURLToPath } from 'node:url';
24
- import { DEFAULT_RENDER_SIZE, DEFAULT_SCALE, UiFidelityRenderStepExecutor, generateRenderScript, getRenderScriptInternals, parseRenderSize, parseScale, } from './ui-fidelity-render.js';
24
+ import { DEFAULT_RENDER_SIZE, DEFAULT_SCALE, UiFidelityRenderStepExecutor, generateRenderScript, getRenderScriptInternals, parseRenderSize, parseScale, TRIM_HELPER_SWIFT_SOURCE, } from './ui-fidelity-render.js';
25
25
  import { clearRegistry, getStepMetadata, hasStep } from './registry.js';
26
26
  import { initializeStepRegistry } from './index.js';
27
27
  import { testConfig } from './test-config.js';
@@ -1509,4 +1509,60 @@ describe('committed fixture package', () => {
1509
1509
  expectNoAbsolutePathLeaks(project, result);
1510
1510
  }, 600_000);
1511
1511
  });
1512
+ // The fake `swift` cannot exercise the trim helper's CoreGraphics pixel logic,
1513
+ // so the bounding-box behavior is guarded here with the real toolchain. This
1514
+ // is the regression test for the bug where a wrapper that fills the canvas with
1515
+ // an opaque .background(...) was not trimmed to its content: the renderer forces
1516
+ // the view into a fixed device frame whose margins are transparent, so the
1517
+ // helper must detect the solid background from the corners of the opaque region,
1518
+ // not the raw frame.
1519
+ describe('trim helper pixel logic (real toolchain)', () => {
1520
+ const realSwiftTest = process.env.CIBUILD_UI_FIDELITY_REAL_SWIFT === '1' ? test : test.skip;
1521
+ // PNG IHDR carries width/height as big-endian uint32 at byte offsets 16/20.
1522
+ function pngSize(filePath) {
1523
+ const buf = readFileSync(filePath);
1524
+ return { width: buf.readUInt32BE(16), height: buf.readUInt32BE(20) };
1525
+ }
1526
+ // Swift program that writes a fixture mimicking a real render: a transparent
1527
+ // device frame, an opaque white wrapper inset within it, and a distinct-color
1528
+ // "content" rectangle inside the white. Crop should land on the content.
1529
+ const MAKE_FIXTURE_SWIFT = [
1530
+ 'import Foundation',
1531
+ 'import ImageIO',
1532
+ 'import CoreGraphics',
1533
+ 'import UniformTypeIdentifiers',
1534
+ 'let w = 420, h = 320, cs = CGColorSpaceCreateDeviceRGB()',
1535
+ 'let c = CGContext(data: nil, width: w, height: h, bitsPerComponent: 8, bytesPerRow: 0, space: cs, bitmapInfo: CGImageAlphaInfo.premultipliedLast.rawValue)!',
1536
+ 'c.clear(CGRect(x: 0, y: 0, width: w, height: h))',
1537
+ 'c.setFillColor(red: 1, green: 1, blue: 1, alpha: 1)',
1538
+ 'c.fill(CGRect(x: 20, y: 40, width: 375, height: 200))',
1539
+ 'c.setFillColor(red: 1, green: 240.0/255, blue: 238.0/255, alpha: 1)',
1540
+ 'c.fill(CGRect(x: 36, y: 56, width: 343, height: 168))',
1541
+ 'let out = CommandLine.arguments[1]',
1542
+ 'let d = CGImageDestinationCreateWithURL(URL(fileURLWithPath: out) as CFURL, UTType.png.identifier as CFString, 1, nil)!',
1543
+ 'CGImageDestinationAddImage(d, c.makeImage()!, nil)',
1544
+ '_ = CGImageDestinationFinalize(d)',
1545
+ ].join('\n') + '\n';
1546
+ realSwiftTest('crops an opaque-background wrapper inside a transparent frame to its content', () => {
1547
+ const dir = mkdtempSync(join(tmpdir(), 'ui-fidelity-trim-real-'));
1548
+ tempDirs.push(dir);
1549
+ const makePath = join(dir, 'Make.swift');
1550
+ const trimPath = join(dir, 'Trim.swift');
1551
+ const inputPath = join(dir, 'input.png');
1552
+ const outputPath = join(dir, 'out.png');
1553
+ writeFileSync(makePath, MAKE_FIXTURE_SWIFT);
1554
+ writeFileSync(trimPath, TRIM_HELPER_SWIFT_SOURCE);
1555
+ const make = spawnSync('swift', [makePath, inputPath], { encoding: 'utf-8' });
1556
+ expect(make.status).toBe(0);
1557
+ // 420x320 transparent canvas, 375x200 white wrapper, 343x168 pink card.
1558
+ expect(pngSize(inputPath)).toEqual({ width: 420, height: 320 });
1559
+ const trim = spawnSync('swift', [trimPath, inputPath, outputPath], {
1560
+ encoding: 'utf-8',
1561
+ });
1562
+ expect(trim.status).toBe(0);
1563
+ // The crop lands on the content card, NOT the white wrapper (375x200) and
1564
+ // NOT the raw canvas (420x320).
1565
+ expect(pngSize(outputPath)).toEqual({ width: 343, height: 168 });
1566
+ }, 600_000);
1567
+ });
1512
1568
  //# sourceMappingURL=ui-fidelity-render.test.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@invarn/cibuild",
3
- "version": "2.0.6",
3
+ "version": "2.0.8",
4
4
  "description": "CI Build CLI — local pipeline orchestration and validation",
5
5
  "type": "module",
6
6
  "main": "dist/cli.cjs",