File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
packages/playground/website/cypress/e2e Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -22,9 +22,11 @@ describe('Playground website UI', () => {
22
22
// Test all PHP versions for completeness
23
23
describe ( 'PHP version switcher' , ( ) => {
24
24
SupportedPHPVersions . forEach ( ( version ) => {
25
- if ( version === '7.0' ) {
26
- // The SQLite integration plugin uses `private const` which is not supported in PHP 7.0
27
- // @TODO : Adjust the plugin and remove this condition.
25
+ /**
26
+ * WordPress 6.6 dropped support for PHP 7.0 and 7.1 so we need to skip these versions.
27
+ * @see https://make.wordpress.org/core/2024/04/08/dropping-support-for-php-7-1/
28
+ */
29
+ if ( [ '7.0' , '7.1' ] . includes ( version ) ) {
28
30
return ;
29
31
}
30
32
it ( 'should switch PHP version to ' + version , ( ) => {
You can’t perform that action at this time.
0 commit comments