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
Copy file name to clipboardExpand all lines: __tests__/buildx/imagetools.test.ts
+16-2Lines changed: 16 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -49,7 +49,21 @@ beforeEach(() => {
49
49
});
50
50
51
51
describe('inspectManifest',()=>{
52
-
it('retries transient manifest unknown errors when requested',async()=>{
52
+
// prettier-ignore
53
+
it.each([
54
+
[
55
+
'Docker Hub missing tag',
56
+
'ERROR: docker.io/library/alpine:codex-definitely-missing: not found'
57
+
],
58
+
[
59
+
'GHCR missing digest',
60
+
'ERROR: ghcr.io/docker/actions-toolkit-test@sha256:128e1cfe4e5f76af75df1121fccaf6da0cba412deec293ad988d7ade34499d09: not found'
61
+
],
62
+
[
63
+
'AWS ECR manifest propagation',
64
+
'ERROR: httpReadSeeker: failed open: content at https://public.ecr.aws/v2/q3b5f1u4/test-docker-action/manifests/sha256:76bc7984bdcf00ef5af953b7cb3de57ef39101cc091f4913c738b16cfbd26e53 not found: not found'
65
+
]
66
+
])('retries transient manifest unknown errors when requested (%s)',async(_name,stderr)=>{
0 commit comments