summit-registration-lite 7.0.3 → 7.0.4
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.
- package/.claude/rules/summit-registration-lite-component-props.md +95 -0
- package/.claude/rules/summit-registration-lite-i18n.md +62 -0
- package/.claude/rules/summit-registration-lite-payment-providers.md +69 -0
- package/.claude/rules/summit-registration-lite-project.md +80 -0
- package/.claude/rules/summit-registration-lite-redux-actions.md +65 -0
- package/.claude/rules/summit-registration-lite-step-flow.md +77 -0
- package/.claude/rules/summit-registration-lite-testing.md +97 -0
- package/.claude/rules/summit-registration-lite-utils.md +71 -0
- package/.claude/skills/summit-registration-lite-add-provider/SKILL.md +155 -0
- package/.claude/skills/summit-registration-lite-dev-setup/SKILL.md +67 -0
- package/.claude/skills/summit-registration-lite-publish/SKILL.md +64 -0
- package/.claude/skills/summit-registration-lite-scaffold-component/SKILL.md +152 -0
- package/.codegraph/config.json +141 -0
- package/.codegraph/daemon.pid +6 -0
- package/dist/components/index.css +1 -2
- package/dist/components/index.js +24 -52
- package/dist/components/index.js.map +1 -1
- package/dist/components/registration-form.css +1 -2
- package/dist/components/registration-form.js +20 -47
- package/dist/components/registration-form.js.map +1 -1
- package/dist/components/registration-modal.css +1 -2
- package/dist/components/registration-modal.js +23 -51
- package/dist/components/registration-modal.js.map +1 -1
- package/dist/index.css +1 -2
- package/dist/index.js +23 -51
- package/dist/index.js.map +1 -1
- package/e2e/promo-code-discovery.spec.js +4 -2
- package/package.json +1 -1
|
@@ -275,13 +275,15 @@ test.describe('validation errors', () => {
|
|
|
275
275
|
});
|
|
276
276
|
|
|
277
277
|
test.describe('no tickets available', () => {
|
|
278
|
-
test('
|
|
278
|
+
test('renders the noAllowedTicketsMessage in place of the dropdown', async ({ page }) => {
|
|
279
279
|
await setupRoutes(page, {
|
|
280
280
|
tickets: [],
|
|
281
281
|
discovery: [discoveredCode()],
|
|
282
282
|
});
|
|
283
283
|
await page.goto('/');
|
|
284
|
-
|
|
284
|
+
// Dev harness sets a default noAllowedTicketsMessage; the inline notice
|
|
285
|
+
// renders it (as HTML, so the my-tickets link is clickable).
|
|
286
|
+
await expect(page.locator('text=You already have purchased all available tickets')).toBeVisible();
|
|
285
287
|
});
|
|
286
288
|
});
|
|
287
289
|
|