You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`"annotations.org.opencontainers.image.version" output is not valid`
138
-
);
131
+
assert.equal(builtImage.tags.length, expectedTags.length, `"tags" output is not valid, expected ${expectedTags.length} tags but got ${builtImage.tags.length}`);
132
+
for (const expectedTag of expectedTags) {
133
+
if (!builtImage.tags.includes(expectedTag)) {
134
+
assert.fail(`Expected tag "${expectedTag}" not found in "tags" output`);
0 commit comments