Add changes to tests projects in package.json (#46016)

This commit is contained in:
Adrian Moldovan 2024-03-27 18:35:08 +02:00 committed by GitHub
parent 7c75791b7d
commit ad60ba3a68
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 37 additions and 3 deletions

View File

@ -0,0 +1,4 @@
Significance: patch
Type: dev
Add changes to tests projects

View File

@ -180,7 +180,17 @@
"--shard=4/5",
"--shard=5/5"
],
"changes": [],
"changes": [
"client/admin/config/*.json",
"composer.lock",
"includes/**/*.php",
"patterns/**/*.php",
"src/**/*.php",
"templates/**/*.php",
"tests/php/**/*.php",
"tests/unit-tests/**/*.php",
"tests/e2e-pw/**"
],
"testEnv": {
"start": "env:test"
}
@ -189,7 +199,17 @@
"name": "Core API tests",
"testType": "api",
"command": "test:api-pw",
"changes": [],
"changes": [
"client/admin/config/*.json",
"composer.lock",
"includes/**/*.php",
"patterns/**/*.php",
"src/**/*.php",
"templates/**/*.php",
"tests/php/**/*.php",
"tests/unit-tests/**/*.php",
"tests/api-core-tests/**"
],
"testEnv": {
"start": "env:test"
}
@ -198,7 +218,17 @@
"name": "Core Performance tests (K6)",
"testType": "performance",
"command": "test:perf",
"changes": [],
"changes": [
"client/admin/config/*.json",
"composer.lock",
"includes/**/*.php",
"patterns/**/*.php",
"src/**/*.php",
"templates/**/*.php",
"tests/php/**/*.php",
"tests/unit-tests/**/*.php",
"tests/performance/**"
],
"testEnv": {
"start": "env:perf"
}