Skip to content

Commit d9752c5

Browse files
authored
Merge pull request #6094 from Catrobat/TEST
FIX Tests
2 parents 10f6da2 + 5f15b16 commit d9752c5

File tree

8 files changed

+91
-72
lines changed

8 files changed

+91
-72
lines changed

assets/Project/ProjectPage.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ table td:nth-child(1) {
349349
justify-content: flex-end;
350350
gap: 0.5rem;
351351
margin-top: 0.75rem;
352-
animation: fadeIn 0.3s ease;
352+
animation: fade-in 0.3s ease;
353353
}
354354

355355
#comment-post-button,
@@ -385,7 +385,7 @@ table td:nth-child(1) {
385385
}
386386
}
387387

388-
@keyframes fadeIn {
388+
@keyframes fade-in {
389389
from {
390390
opacity: 0;
391391
transform: translateY(5px);

behat.yaml.dist

Lines changed: 34 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ default:
6060

6161
api-authentication:
6262
paths:
63-
features: "tests/BehatFeatures/api/authentication"
63+
- tests/BehatFeatures/api/authentication
6464
contexts:
6565
- App\System\Testing\Behat\Context\RefreshEnvironmentContext
6666
- App\System\Testing\Behat\Context\DataFixturesContext
@@ -69,7 +69,7 @@ default:
6969

7070
api-mediapackage:
7171
paths:
72-
features: "tests/BehatFeatures/api/medialibrary"
72+
- tests/BehatFeatures/api/medialibrary
7373
contexts:
7474
- App\System\Testing\Behat\Context\RefreshEnvironmentContext
7575
- App\System\Testing\Behat\Context\DataFixturesContext
@@ -78,7 +78,7 @@ default:
7878

7979
api-projects:
8080
paths:
81-
features: "tests/BehatFeatures/api/projects"
81+
- tests/BehatFeatures/api/projects
8282
contexts:
8383
- App\System\Testing\Behat\Context\RefreshEnvironmentContext
8484
- App\System\Testing\Behat\Context\DataFixturesContext
@@ -87,7 +87,7 @@ default:
8787

8888
api-user:
8989
paths:
90-
features: "tests/BehatFeatures/api/user"
90+
- tests/BehatFeatures/api/user
9191
contexts:
9292
- App\System\Testing\Behat\Context\RefreshEnvironmentContext
9393
- App\System\Testing\Behat\Context\DataFixturesContext
@@ -96,7 +96,7 @@ default:
9696

9797
api-notifications:
9898
paths:
99-
features: "tests/BehatFeatures/api/notifications"
99+
- tests/BehatFeatures/api/notifications
100100
contexts:
101101
- App\System\Testing\Behat\Context\RefreshEnvironmentContext
102102
- App\System\Testing\Behat\Context\DataFixturesContext
@@ -105,7 +105,7 @@ default:
105105

106106
api-utility:
107107
paths:
108-
features: "tests/BehatFeatures/api/utility"
108+
- tests/BehatFeatures/api/utility
109109
contexts:
110110
- App\System\Testing\Behat\Context\RefreshEnvironmentContext
111111
- App\System\Testing\Behat\Context\DataFixturesContext
@@ -114,41 +114,40 @@ default:
114114

115115
api-tag:
116116
paths:
117-
features: "tests/BehatFeatures/api/tag"
117+
- tests/BehatFeatures/api/tag
118118
contexts:
119119
- App\System\Testing\Behat\Context\RefreshEnvironmentContext
120120
- App\System\Testing\Behat\Context\DataFixturesContext
121121
- App\System\Testing\Behat\Context\ApiContext
122122

123123
api-translation:
124124
paths:
125-
features: "tests/BehatFeatures/api/translation"
125+
- tests/BehatFeatures/api/translation
126126
contexts:
127127
- App\System\Testing\Behat\Context\RefreshEnvironmentContext
128128
- App\System\Testing\Behat\Context\DataFixturesContext
129129
- App\System\Testing\Behat\Context\ApiContext
130130

131131
api-studio:
132132
paths:
133-
features: "tests/BehatFeatures/api/studio"
133+
- tests/BehatFeatures/api/studio
134134
contexts:
135135
- App\System\Testing\Behat\Context\RefreshEnvironmentContext
136136
- App\System\Testing\Behat\Context\DataFixturesContext
137137
- App\System\Testing\Behat\Context\ApiContext
138138

139139
api-search:
140140
paths:
141-
features: "tests/BehatFeatures/api/search"
141+
- tests/BehatFeatures/api/search
142142
contexts:
143143
- App\System\Testing\Behat\Context\RefreshEnvironmentContext
144144
- App\System\Testing\Behat\Context\DataFixturesContext
145145
- App\System\Testing\Behat\Context\ApiContext
146-
147146
### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ###
148147

149148
web-achievements:
150149
paths:
151-
features: "tests/BehatFeatures/web/achievements"
150+
- tests/BehatFeatures/web/achievements
152151
contexts:
153152
- App\System\Testing\Behat\Context\RefreshEnvironmentContext
154153
- App\System\Testing\Behat\Context\DataFixturesContext
@@ -157,7 +156,7 @@ default:
157156

158157
web-admin:
159158
paths:
160-
features: "tests/BehatFeatures/web/admin"
159+
- tests/BehatFeatures/web/admin
161160
contexts:
162161
- App\System\Testing\Behat\Context\RefreshEnvironmentContext
163162
- App\System\Testing\Behat\Context\DataFixturesContext
@@ -166,7 +165,7 @@ default:
166165

167166
web-apk-generation:
168167
paths:
169-
features: "tests/BehatFeatures/web/apk-generation"
168+
- tests/BehatFeatures/web/apk-generation
170169
contexts:
171170
- App\System\Testing\Behat\Context\RefreshEnvironmentContext
172171
- App\System\Testing\Behat\Context\DataFixturesContext
@@ -175,7 +174,7 @@ default:
175174

176175
web-authentication:
177176
paths:
178-
features: "tests/BehatFeatures/web/authentication"
177+
- tests/BehatFeatures/web/authentication
179178
contexts:
180179
- App\System\Testing\Behat\Context\RefreshEnvironmentContext
181180
- App\System\Testing\Behat\Context\DataFixturesContext
@@ -184,7 +183,7 @@ default:
184183

185184
web-code-statistics:
186185
paths:
187-
features: "tests/BehatFeatures/web/code-statistics"
186+
- tests/BehatFeatures/web/code-statistics
188187
contexts:
189188
- App\System\Testing\Behat\Context\RefreshEnvironmentContext
190189
- App\System\Testing\Behat\Context\DataFixturesContext
@@ -193,7 +192,7 @@ default:
193192

194193
web-code-view:
195194
paths:
196-
features: "tests/BehatFeatures/web/code-view"
195+
- tests/BehatFeatures/web/code-view
197196
contexts:
198197
- App\System\Testing\Behat\Context\RefreshEnvironmentContext
199198
- App\System\Testing\Behat\Context\DataFixturesContext
@@ -202,7 +201,7 @@ default:
202201

203202
web-comments:
204203
paths:
205-
features: "tests/BehatFeatures/web/comments"
204+
- tests/BehatFeatures/web/comments
206205
contexts:
207206
- App\System\Testing\Behat\Context\RefreshEnvironmentContext
208207
- App\System\Testing\Behat\Context\DataFixturesContext
@@ -211,7 +210,7 @@ default:
211210

212211
web-general:
213212
paths:
214-
features: "tests/BehatFeatures/web/general"
213+
- tests/BehatFeatures/web/general
215214
contexts:
216215
- App\System\Testing\Behat\Context\RefreshEnvironmentContext
217216
- App\System\Testing\Behat\Context\DataFixturesContext
@@ -220,7 +219,7 @@ default:
220219

221220
web-media-library:
222221
paths:
223-
features: "tests/BehatFeatures/web/media-library"
222+
- tests/BehatFeatures/web/media-library
224223
contexts:
225224
- App\System\Testing\Behat\Context\RefreshEnvironmentContext
226225
- App\System\Testing\Behat\Context\DataFixturesContext
@@ -229,7 +228,7 @@ default:
229228

230229
web-notifications:
231230
paths:
232-
features: "tests/BehatFeatures/web/notifications"
231+
- tests/BehatFeatures/web/notifications
233232
contexts:
234233
- App\System\Testing\Behat\Context\RefreshEnvironmentContext
235234
- App\System\Testing\Behat\Context\DataFixturesContext
@@ -238,7 +237,7 @@ default:
238237

239238
web-profile:
240239
paths:
241-
features: "tests/BehatFeatures/web/profile"
240+
- tests/BehatFeatures/web/profile
242241
contexts:
243242
- App\System\Testing\Behat\Context\RefreshEnvironmentContext
244243
- App\System\Testing\Behat\Context\DataFixturesContext
@@ -247,7 +246,7 @@ default:
247246

248247
web-project:
249248
paths:
250-
features: "tests/BehatFeatures/web/project"
249+
- tests/BehatFeatures/web/project
251250
contexts:
252251
- App\System\Testing\Behat\Context\RefreshEnvironmentContext
253252
- App\System\Testing\Behat\Context\DataFixturesContext
@@ -256,7 +255,7 @@ default:
256255

257256
web-project-details:
258257
paths:
259-
features: "tests/BehatFeatures/web/project-details"
258+
- tests/BehatFeatures/web/project-details
260259
contexts:
261260
- App\System\Testing\Behat\Context\RefreshEnvironmentContext
262261
- App\System\Testing\Behat\Context\DataFixturesContext
@@ -265,7 +264,7 @@ default:
265264

266265
web-project-list:
267266
paths:
268-
features: "tests/BehatFeatures/web/project-list"
267+
- tests/BehatFeatures/web/project-list
269268
contexts:
270269
- App\System\Testing\Behat\Context\RefreshEnvironmentContext
271270
- App\System\Testing\Behat\Context\DataFixturesContext
@@ -274,8 +273,7 @@ default:
274273

275274
web-reactions:
276275
paths:
277-
features: "tests/BehatFeatures/web/reactions"
278-
276+
- tests/BehatFeatures/web/reactions
279277
contexts:
280278
- App\System\Testing\Behat\Context\RefreshEnvironmentContext
281279
- App\System\Testing\Behat\Context\DataFixturesContext
@@ -284,7 +282,7 @@ default:
284282

285283
web-recommendations:
286284
paths:
287-
features: "tests/BehatFeatures/web/recommendations"
285+
- tests/BehatFeatures/web/recommendations
288286
contexts:
289287
- App\System\Testing\Behat\Context\RefreshEnvironmentContext
290288
- App\System\Testing\Behat\Context\DataFixturesContext
@@ -293,7 +291,7 @@ default:
293291

294292
web-remix-system:
295293
paths:
296-
features: "tests/BehatFeatures/web/remix-system"
294+
- tests/BehatFeatures/web/remix-system
297295
contexts:
298296
- App\System\Testing\Behat\Context\RefreshEnvironmentContext
299297
- App\System\Testing\Behat\Context\DataFixturesContext
@@ -302,7 +300,7 @@ default:
302300

303301
web-scratch-integration:
304302
paths:
305-
features: "tests/BehatFeatures/web/scratch-integration"
303+
- tests/BehatFeatures/web/scratch-integration
306304
contexts:
307305
- App\System\Testing\Behat\Context\RefreshEnvironmentContext
308306
- App\System\Testing\Behat\Context\DataFixturesContext
@@ -311,7 +309,7 @@ default:
311309

312310
web-search:
313311
paths:
314-
features: "tests/BehatFeatures/web/search"
312+
- tests/BehatFeatures/web/search
315313
contexts:
316314
- App\System\Testing\Behat\Context\RefreshEnvironmentContext
317315
- App\System\Testing\Behat\Context\DataFixturesContext
@@ -320,7 +318,7 @@ default:
320318

321319
web-studio:
322320
paths:
323-
features: "tests/BehatFeatures/web/studio"
321+
- tests/BehatFeatures/web/studio
324322
contexts:
325323
- App\System\Testing\Behat\Context\RefreshEnvironmentContext
326324
- App\System\Testing\Behat\Context\DataFixturesContext
@@ -329,7 +327,7 @@ default:
329327

330328
web-top-bar:
331329
paths:
332-
features: "tests/BehatFeatures/web/top-bar"
330+
- tests/BehatFeatures/web/top-bar
333331
contexts:
334332
- App\System\Testing\Behat\Context\RefreshEnvironmentContext
335333
- App\System\Testing\Behat\Context\DataFixturesContext
@@ -338,7 +336,7 @@ default:
338336

339337
web-translation:
340338
paths:
341-
features: "tests/BehatFeatures/web/translation"
339+
- tests/BehatFeatures/web/translation
342340
contexts:
343341
- App\System\Testing\Behat\Context\RefreshEnvironmentContext
344342
- App\System\Testing\Behat\Context\DataFixturesContext
@@ -347,7 +345,7 @@ default:
347345

348346
web-system:
349347
paths:
350-
features: "tests/BehatFeatures/web/system"
348+
- tests/BehatFeatures/web/system
351349
contexts:
352350
- App\System\Testing\Behat\Context\RefreshEnvironmentContext
353351
- App\System\Testing\Behat\Context\DataFixturesContext
@@ -360,4 +358,4 @@ default:
360358
#
361359
gherkin:
362360
filters:
363-
tags: "@~disabled&&~wip&&~external"
361+
tags: "~@disabled&&~@wip&&~@external"

migrations/2026/Version20260115142912.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,20 @@
1212
*/
1313
final class Version20260115142912 extends AbstractMigration
1414
{
15+
#[\Override]
1516
public function getDescription(): string
1617
{
1718
return '';
1819
}
1920

21+
#[\Override]
2022
public function up(Schema $schema): void
2123
{
2224
// this up() migration is auto-generated, please modify it to your needs
2325
$this->addSql('DROP TABLE response_cache');
2426
}
2527

28+
#[\Override]
2629
public function down(Schema $schema): void
2730
{
2831
// this down() migration is auto-generated, please modify it to your needs

0 commit comments

Comments
 (0)