Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .changeset/chilly-kids-fly.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
---
---
Comment on lines +1 to +2
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Verification agent

🧩 Analysis chain

Empty changeset front matter is invalid and will fail Changesets parsing/CI.

Either remove the file (test-only PR; no release) or replace with a valid changeset targeting the correct package(s) and bump type. If a changeset is required but no release should occur, follow the repo’s “no release” policy (e.g., label-based skip or a “none” bump if supported by your setup). Please confirm project policy.


🏁 Script executed:

#!/bin/bash
ls -la .changeset

Length of output: 1676


Fix or remove empty changeset front matter
File “.changeset/chilly-kids-fly.md” contains only empty front matter (---\n---), which will break Changesets. Either delete this file if no release is intended, or fill in a valid front matter with the appropriate package(s) and bump type. If you need a no-release changeset, apply the repo’s “no release” policy (e.g. a “none” bump or label-based skip).

🧰 Tools
🪛 LanguageTool

[grammar] ~1-~1: Hier könnte ein Fehler sein.
Context: --- ---

(QB_NEW_DE)

🤖 Prompt for AI Agents
In .changeset/chilly-kids-fly.md lines 1-2 there is only empty front matter
(---\n---) which will break Changesets; fix it by either deleting this file if
no release is intended, or replace the empty front matter with valid changeset
front matter listing the affected package(s) and a bump type (major/minor/patch
or your repo’s “none”/no-release convention), or apply the repository’s
no-release policy (e.g., use a “none” bump or add the required label) so
Changesets can process it correctly.

12 changes: 9 additions & 3 deletions integration/tests/pricing-table.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,9 @@ testAgainstRunningApps({ withEnv: [appConfigs.envs.withBilling] })('pricing tabl
await u.po.checkout.fillTestCard();
await u.po.checkout.clickPayOrSubscribe();

await expect(u.po.checkout.root.getByText(/Trial.*successfully.*started/i)).toBeVisible();
await expect(u.po.checkout.root.getByText(/Trial.*successfully.*started/i)).toBeVisible({
timeout: 15_000,
});
await u.po.checkout.confirmAndContinue();

await u.po.page.goToRelative('/pricing-table');
Expand Down Expand Up @@ -419,6 +421,7 @@ testAgainstRunningApps({ withEnv: [appConfigs.envs.withBilling] })('pricing tabl
await u.po.checkout.clickPayOrSubscribe();
await u.po.checkout.confirmAndContinue();

await u.po.page.waitForAppUrl('/');
await u.po.page.goToRelative('/user');
await u.po.userProfile.waitForMounted();
await u.po.userProfile.switchToBillingTab();
Expand All @@ -440,7 +443,8 @@ testAgainstRunningApps({ withEnv: [appConfigs.envs.withBilling] })('pricing tabl
await u.po.checkout.waitForMounted();
await u.po.checkout.root.getByRole('button', { name: /^pay\s\$/i }).waitFor({ state: 'visible' });
await u.po.checkout.clickPayOrSubscribe();

await u.po.checkout.confirmAndContinue();
await u.po.page.waitForAppUrl('/');
await u.po.page.goToRelative('/user');
await u.po.userProfile.waitForMounted();
await u.po.userProfile.switchToBillingTab();
Expand Down Expand Up @@ -482,7 +486,9 @@ testAgainstRunningApps({ withEnv: [appConfigs.envs.withBilling] })('pricing tabl
await u.po.checkout.waitForMounted();
await u.po.checkout.fillTestCard();
await u.po.checkout.clickPayOrSubscribe();
await expect(u.po.page.getByText('Payment was successful!')).toBeVisible();
await expect(u.po.page.getByText('Payment was successful!')).toBeVisible({
timeout: 15_000,
});

await u.po.checkout.confirmAndContinue();
await u.po.pricingTable.startCheckout({ planSlug: 'free_user', shouldSwitch: true });
Expand Down