We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5bfa7d3 commit 7e0e991Copy full SHA for 7e0e991
tests/Feature/Install/GuidelineComposerTest.php
@@ -61,15 +61,15 @@
61
// Use test markers to verify conditional logic without depending on actual content
62
if ($shouldIncludeForm) {
63
expect($guidelines)
64
- ->toContain('Example form using the `<Form>` component');
+ ->toContain('`<Form>` Component Example');
65
66
if ($shouldInclude212Features) {
67
68
->toContain('form component resetting')
69
- ->not->toContain('does NOT support');
+ ->not->toContain('does not support');
70
} else {
71
72
- ->toContain('does NOT support')
+ ->toContain('does not support')
73
->not->toContain('form component resetting');
74
}
75
0 commit comments