feat: implement issues #930, #931, #932, #934 for creator-deposits contract#1289
Merged
Merged
Annotations
10 errors, 2 warnings, and 1 notice
|
Run smoke tests
Process completed with exit code 1.
|
|
Run smoke tests:
frontend/e2e/smoke.spec.ts#L142
3) [chromium] › e2e/smoke.spec.ts:138:5 › smoke: subscribe page renders at least one creator ─────
Retry #2 ───────────────────────────────────────────────────────────────────────────────────────
Error: expect(locator).toBeVisible() failed
Locator: getByRole('heading', { name: /subscribe/i }).first()
Expected: visible
Timeout: 10000ms
Error: element(s) not found
Call log:
- Expect "toBeVisible" with timeout 10000ms
- waiting for getByRole('heading', { name: /subscribe/i }).first()
140 | // The page heading or at least one creator card must appear
141 | const heading = page.getByRole('heading', { name: /subscribe/i }).first();
> 142 | await expect(heading).toBeVisible({ timeout: 10_000 });
| ^
143 | });
144 |
at /home/runner/work/MyFans/MyFans/frontend/e2e/smoke.spec.ts:142:25
|
|
Run smoke tests:
frontend/e2e/smoke.spec.ts#L142
3) [chromium] › e2e/smoke.spec.ts:138:5 › smoke: subscribe page renders at least one creator ─────
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
Error: expect(locator).toBeVisible() failed
Locator: getByRole('heading', { name: /subscribe/i }).first()
Expected: visible
Timeout: 10000ms
Error: element(s) not found
Call log:
- Expect "toBeVisible" with timeout 10000ms
- waiting for getByRole('heading', { name: /subscribe/i }).first()
140 | // The page heading or at least one creator card must appear
141 | const heading = page.getByRole('heading', { name: /subscribe/i }).first();
> 142 | await expect(heading).toBeVisible({ timeout: 10_000 });
| ^
143 | });
144 |
at /home/runner/work/MyFans/MyFans/frontend/e2e/smoke.spec.ts:142:25
|
|
Run smoke tests:
frontend/e2e/smoke.spec.ts#L142
3) [chromium] › e2e/smoke.spec.ts:138:5 › smoke: subscribe page renders at least one creator ─────
Error: expect(locator).toBeVisible() failed
Locator: getByRole('heading', { name: /subscribe/i }).first()
Expected: visible
Timeout: 10000ms
Error: element(s) not found
Call log:
- Expect "toBeVisible" with timeout 10000ms
- waiting for getByRole('heading', { name: /subscribe/i }).first()
140 | // The page heading or at least one creator card must appear
141 | const heading = page.getByRole('heading', { name: /subscribe/i }).first();
> 142 | await expect(heading).toBeVisible({ timeout: 10_000 });
| ^
143 | });
144 |
at /home/runner/work/MyFans/MyFans/frontend/e2e/smoke.spec.ts:142:25
|
|
Run smoke tests:
frontend/e2e/smoke.spec.ts#L129
2) [chromium] › e2e/smoke.spec.ts:113:5 › smoke: gated content shows subscribe prompt for unauthenticated visitor
Retry #2 ───────────────────────────────────────────────────────────────────────────────────────
Error: expect(locator).toBeVisible() failed
Locator: getByRole('button', { name: /subscribe/i }).first().or(getByText(/subscribe to unlock|exclusive content/i).first())
Expected: visible
Error: strict mode violation: getByRole('button', { name: /subscribe/i }).first().or(getByText(/subscribe to unlock|exclusive content/i).first()) resolved to 2 elements:
1) <button disabled type="button" class="rounded-lg bg-primary-600 px-4 py-2 text-sm font-medium text-white transition-colors hover:bg-primary-700 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-primary-500">Connect wallet to subscribe</button> aka getByRole('button', { name: 'Connect wallet to subscribe' })
2) <button type="button" class="w-full py-3 bg-primary-500 hover:bg-primary-600 text-white font-bold rounded-xl transition-all shadow-md active:scale-95">Subscribe to unlock</button> aka getByRole('button', { name: 'Subscribe to unlock' })
Call log:
- Expect "toBeVisible" with timeout 10000ms
- waiting for getByRole('button', { name: /subscribe/i }).first().or(getByText(/subscribe to unlock|exclusive content/i).first())
127 | const lockText = page.getByText(/subscribe to unlock|exclusive content/i).first();
128 |
> 129 | await expect(subscribePrompt.or(lockText)).toBeVisible({ timeout: 10_000 });
| ^
130 | // Video player must NOT be accessible without a subscription
131 | await expect(page.locator('video')).not.toBeVisible();
132 | });
at /home/runner/work/MyFans/MyFans/frontend/e2e/smoke.spec.ts:129:46
|
|
Run smoke tests:
frontend/e2e/smoke.spec.ts#L129
2) [chromium] › e2e/smoke.spec.ts:113:5 › smoke: gated content shows subscribe prompt for unauthenticated visitor
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
Error: expect(locator).toBeVisible() failed
Locator: getByRole('button', { name: /subscribe/i }).first().or(getByText(/subscribe to unlock|exclusive content/i).first())
Expected: visible
Error: strict mode violation: getByRole('button', { name: /subscribe/i }).first().or(getByText(/subscribe to unlock|exclusive content/i).first()) resolved to 2 elements:
1) <button disabled type="button" class="rounded-lg bg-primary-600 px-4 py-2 text-sm font-medium text-white transition-colors hover:bg-primary-700 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-primary-500">Connect wallet to subscribe</button> aka getByRole('button', { name: 'Connect wallet to subscribe' })
2) <button type="button" class="w-full py-3 bg-primary-500 hover:bg-primary-600 text-white font-bold rounded-xl transition-all shadow-md active:scale-95">Subscribe to unlock</button> aka getByRole('button', { name: 'Subscribe to unlock' })
Call log:
- Expect "toBeVisible" with timeout 10000ms
- waiting for getByRole('button', { name: /subscribe/i }).first().or(getByText(/subscribe to unlock|exclusive content/i).first())
127 | const lockText = page.getByText(/subscribe to unlock|exclusive content/i).first();
128 |
> 129 | await expect(subscribePrompt.or(lockText)).toBeVisible({ timeout: 10_000 });
| ^
130 | // Video player must NOT be accessible without a subscription
131 | await expect(page.locator('video')).not.toBeVisible();
132 | });
at /home/runner/work/MyFans/MyFans/frontend/e2e/smoke.spec.ts:129:46
|
|
Run smoke tests:
frontend/e2e/smoke.spec.ts#L129
2) [chromium] › e2e/smoke.spec.ts:113:5 › smoke: gated content shows subscribe prompt for unauthenticated visitor
Error: expect(locator).toBeVisible() failed
Locator: getByRole('button', { name: /subscribe/i }).first().or(getByText(/subscribe to unlock|exclusive content/i).first())
Expected: visible
Error: strict mode violation: getByRole('button', { name: /subscribe/i }).first().or(getByText(/subscribe to unlock|exclusive content/i).first()) resolved to 2 elements:
1) <button disabled type="button" class="rounded-lg bg-primary-600 px-4 py-2 text-sm font-medium text-white transition-colors hover:bg-primary-700 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-primary-500">Connect wallet to subscribe</button> aka getByRole('button', { name: 'Connect wallet to subscribe' })
2) <button type="button" class="w-full py-3 bg-primary-500 hover:bg-primary-600 text-white font-bold rounded-xl transition-all shadow-md active:scale-95">Subscribe to unlock</button> aka getByRole('button', { name: 'Subscribe to unlock' })
Call log:
- Expect "toBeVisible" with timeout 10000ms
- waiting for getByRole('button', { name: /subscribe/i }).first().or(getByText(/subscribe to unlock|exclusive content/i).first())
127 | const lockText = page.getByText(/subscribe to unlock|exclusive content/i).first();
128 |
> 129 | await expect(subscribePrompt.or(lockText)).toBeVisible({ timeout: 10_000 });
| ^
130 | // Video player must NOT be accessible without a subscription
131 | await expect(page.locator('video')).not.toBeVisible();
132 | });
at /home/runner/work/MyFans/MyFans/frontend/e2e/smoke.spec.ts:129:46
|
|
Run smoke tests:
frontend/e2e/smoke.spec.ts#L105
1) [chromium] › e2e/smoke.spec.ts:95:5 › smoke: wallet connect shows connected address ───────────
Retry #2 ───────────────────────────────────────────────────────────────────────────────────────
Error: expect(locator).toBeVisible() failed
Locator: getByText(/GSMOKE/i)
Expected: visible
Timeout: 10000ms
Error: element(s) not found
Call log:
- Expect "toBeVisible" with timeout 10000ms
- waiting for getByText(/GSMOKE/i)
103 | } else {
104 | // Already connected state – address visible directly
> 105 | await expect(page.getByText(/GSMOKE/i)).toBeVisible({ timeout: 10_000 });
| ^
106 | }
107 | });
108 |
at /home/runner/work/MyFans/MyFans/frontend/e2e/smoke.spec.ts:105:45
|
|
Run smoke tests:
frontend/e2e/smoke.spec.ts#L105
1) [chromium] › e2e/smoke.spec.ts:95:5 › smoke: wallet connect shows connected address ───────────
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
Error: expect(locator).toBeVisible() failed
Locator: getByText(/GSMOKE/i)
Expected: visible
Timeout: 10000ms
Error: element(s) not found
Call log:
- Expect "toBeVisible" with timeout 10000ms
- waiting for getByText(/GSMOKE/i)
103 | } else {
104 | // Already connected state – address visible directly
> 105 | await expect(page.getByText(/GSMOKE/i)).toBeVisible({ timeout: 10_000 });
| ^
106 | }
107 | });
108 |
at /home/runner/work/MyFans/MyFans/frontend/e2e/smoke.spec.ts:105:45
|
|
Run smoke tests:
frontend/e2e/smoke.spec.ts#L105
1) [chromium] › e2e/smoke.spec.ts:95:5 › smoke: wallet connect shows connected address ───────────
Error: expect(locator).toBeVisible() failed
Locator: getByText(/GSMOKE/i)
Expected: visible
Timeout: 10000ms
Error: element(s) not found
Call log:
- Expect "toBeVisible" with timeout 10000ms
- waiting for getByText(/GSMOKE/i)
103 | } else {
104 | // Already connected state – address visible directly
> 105 | await expect(page.getByText(/GSMOKE/i)).toBeVisible({ timeout: 10_000 });
| ^
106 | }
107 | });
108 |
at /home/runner/work/MyFans/MyFans/frontend/e2e/smoke.spec.ts:105:45
|
|
Complete job
Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683, actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020, actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02. Actions will be forced to run with Node.js 24 by default starting June 16th, 2026. Node.js 20 will be removed from the runner on September 16th, 2026. Please check if updated versions of these actions are available that support Node.js 24. To opt into Node.js 24 now, set the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true environment variable on the runner or in your workflow file. Once Node.js 24 becomes the default, you can temporarily opt out by setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
Upload Playwright report on failure
No files were found with the provided path: frontend/playwright-report/. No artifacts will be uploaded.
|
|
Run smoke tests
3 failed
[chromium] › e2e/smoke.spec.ts:95:5 › smoke: wallet connect shows connected address ────────────
[chromium] › e2e/smoke.spec.ts:113:5 › smoke: gated content shows subscribe prompt for unauthenticated visitor
[chromium] › e2e/smoke.spec.ts:138:5 › smoke: subscribe page renders at least one creator ──────
1 passed (1.5m)
|
background
wait
wait-all
cancel
parallel
Loading