Skip to content

Commit 5a3f4ad

Browse files
abueideclaude
andcommitted
refactor(tests): rename process-compose YAML files
Remove "process-compose-" prefix from test suite YAML files for cleaner naming: - tests/process-compose-unit-tests.yaml → tests/unit-tests.yaml - tests/process-compose-e2e.yaml → tests/e2e.yaml Updated all references in: - devbox.json (test:unit, test:e2e scripts) - CLAUDE.md (naming standards) - tests/README.md (configuration references) - wiki/project/CONTRIBUTING.md (naming standards) - wiki/guides/testing.md (example code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent b5b091d commit 5a3f4ad

10 files changed

Lines changed: 15 additions & 15 deletions

File tree

CLAUDE.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -732,12 +732,12 @@ plugins/tests/
732732

733733
**File naming:**
734734
```
735-
process-compose-{suite}.yaml
735+
{suite}.yaml
736736
737737
Examples:
738-
- process-compose-lint.yaml
739-
- process-compose-unit-tests.yaml
740-
- process-compose-e2e.yaml
738+
- lint.yaml
739+
- unit-tests.yaml
740+
- e2e.yaml
741741
```
742742

743743
**Process naming:**

devbox.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
],
3434
"test:unit": [
3535
"echo 'Running orchestrated unit tests...'",
36-
"process-compose -f tests/process-compose-unit-tests.yaml --tui=${TEST_TUI:-false}"
36+
"process-compose -f tests/unit-tests.yaml --tui=${TEST_TUI:-false}"
3737
],
3838
"test:e2e:android": [
3939
"echo 'Running Android example E2E test...'",
@@ -49,7 +49,7 @@
4949
],
5050
"test:e2e": [
5151
"echo 'Running E2E tests (orchestrated: android+ios parallel, then rn)...'",
52-
"process-compose -f tests/process-compose-e2e.yaml --no-server --tui=${TEST_TUI:-false}"
52+
"process-compose -f tests/e2e.yaml --no-server --tui=${TEST_TUI:-false}"
5353
],
5454
"test": [
5555
"echo '========================================'",

examples/android/devbox.d/android/devices/devices.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@
1414
}
1515
],
1616
"checksum": "8df4d3393b61fbbb08e45cf8762f95c521316938e514527916e4fce88a849d57",
17-
"generated_at": "2026-02-20T01:42:04Z"
17+
"generated_at": "2026-02-20T01:54:46Z"
1818
}

examples/react-native/devbox.d/android/devices/devices.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@
1414
}
1515
],
1616
"checksum": "8df4d3393b61fbbb08e45cf8762f95c521316938e514527916e4fce88a849d57",
17-
"generated_at": "2026-02-20T01:53:18Z"
17+
"generated_at": "2026-02-20T03:07:47Z"
1818
}

examples/react-native/devbox.d/ios/devices/devices.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@
1010
}
1111
],
1212
"checksum": "4d5276f203d7ad62860bfc067f76194df53be449d4aa8a3b2d069855ec1f3232",
13-
"generated_at": "2026-02-20T01:53:19Z"
13+
"generated_at": "2026-02-20T03:07:49Z"
1414
}

tests/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ Runs all static analysis in parallel:
173173

174174
### 3. Unit Test Suite (`devbox run test:unit`)
175175

176-
**Configuration**: `tests/process-compose-unit-tests.yaml`
176+
**Configuration**: `tests/unit-tests.yaml`
177177

178178
Runs plugin unit tests after linting:
179179

@@ -192,7 +192,7 @@ Runs plugin unit tests after linting:
192192

193193
### 4. E2E Test Suite (`devbox run test:e2e`)
194194

195-
**Configuration**: `tests/process-compose-e2e.yaml`
195+
**Configuration**: `tests/e2e.yaml`
196196

197197
Runs end-to-end tests with orchestrated dependencies (one platform at a time to avoid resource conflicts):
198198

wiki/guides/testing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1002,7 +1002,7 @@ run_tests test_new_feature
10021002
2. Add to process-compose config:
10031003

10041004
```yaml
1005-
# tests/process-compose-unit-tests.yaml
1005+
# tests/unit-tests.yaml
10061006
test-android-new-feature:
10071007
command: "bash plugins/tests/android/test-new-feature.sh"
10081008
depends_on:

wiki/project/CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -316,9 +316,9 @@ Examples:
316316
process-compose-{suite}.yaml
317317
318318
Examples:
319-
- process-compose-lint.yaml
320-
- process-compose-unit-tests.yaml
321-
- process-compose-e2e.yaml
319+
- lint.yaml
320+
- unit-tests.yaml
321+
- e2e.yaml
322322
```
323323

324324
**Process naming:**

0 commit comments

Comments
 (0)