Skip to content

Commit c36a053

Browse files
committed
Move tests workspace under dev
1 parent 6e84653 commit c36a053

607 files changed

Lines changed: 20700 additions & 58707 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

dev/docs_build/dev/ProjectInstructions/addendums/codex_artifact_and_reporting_standard.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ Examples:
8383
```text
8484
toolbox/text-to-speech/index.html - updated
8585
assets/toolbox/text-to-speech/js/index.js - added
86-
tests/toolbox/text-to-speech/functional.spec.mjs - updated
86+
dev/tests/toolbox/text-to-speech/functional.spec.mjs - updated
8787
```
8888

8989
Do not report:

dev/docs_build/dev/ProjectInstructions/addendums/test_structure_standardization.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7,25 +7,25 @@ Standardize testing locations and ensure independent tool validation.
77
## Canonical Test Structure
88

99
Page-level Playwright tests:
10-
- tests/playwright/{runtime-page-path}/index.spec.mjs
10+
- dev/tests/playwright/{runtime-page-path}/index.spec.mjs
1111

1212
Tool tests:
13-
- tests/toolbox/{tool-name}/
13+
- dev/tests/toolbox/{tool-name}/
1414

1515
Engine tests:
16-
- tests/engine/{feature-name}/
16+
- dev/tests/engine/{feature-name}/
1717

1818
API tests:
19-
- tests/api/{feature-name}/
19+
- dev/tests/api/{feature-name}/
2020

2121
Server tests:
22-
- tests/server/{feature-name}/
22+
- dev/tests/server/{feature-name}/
2323

2424
Shared JavaScript tests:
25-
- tests/js/shared/
25+
- dev/tests/js/shared/
2626

2727
Regression tests:
28-
- tests/regression/
28+
- dev/tests/regression/
2929

3030
## Rules
3131

@@ -42,11 +42,11 @@ Regression tests:
4242

4343
## Page-Level Playwright Examples
4444

45-
- `/admin/index.html` -> `tests/playwright/admin/index/index.spec.mjs`
46-
- `/toolbox/sprites/index.html` -> `tests/playwright/toolbox/sprites/index.spec.mjs`
47-
- `/toolbox/game-hub/index.html` -> `tests/playwright/toolbox/game-hub/index.spec.mjs`
48-
- `/toolbox/messages/index.html` -> `tests/playwright/toolbox/messages/index.spec.mjs`
49-
- `/toolbox/game-configuration/index.html` -> `tests/playwright/toolbox/game-configuration/index.spec.mjs`
45+
- `/admin/index.html` -> `dev/tests/playwright/admin/index/index.spec.mjs`
46+
- `/toolbox/sprites/index.html` -> `dev/tests/playwright/toolbox/sprites/index.spec.mjs`
47+
- `/toolbox/game-hub/index.html` -> `dev/tests/playwright/toolbox/game-hub/index.spec.mjs`
48+
- `/toolbox/messages/index.html` -> `dev/tests/playwright/toolbox/messages/index.spec.mjs`
49+
- `/toolbox/game-configuration/index.html` -> `dev/tests/playwright/toolbox/game-configuration/index.spec.mjs`
5050

5151
## Minimum Page-Level Playwright Coverage
5252

dev/docs_build/dev/ProjectInstructions/standards/AUDIT_EVENT_CONTRACT.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ Audit Event records describe immutable platform audit metadata for important own
1515
## Validation
1616

1717
- Contract: `src/shared/contracts/auditEventContract.js`
18-
- Test: `tests/shared/AuditEventContract.test.mjs`
19-
- Fixture: `tests/fixtures/audit-events/audit-event-scenarios.json`
18+
- Test: `dev/tests/shared/AuditEventContract.test.mjs`
19+
- Fixture: `dev/tests/fixtures/audit-events/audit-event-scenarios.json`

dev/docs_build/dev/ProjectInstructions/standards/BACKUP_SNAPSHOT_CONTRACT.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,6 @@ Backup Snapshot records must not contain:
4747
Targeted validation lives in:
4848

4949
- `src/shared/contracts/backupSnapshotContract.js`
50-
- `tests/shared/BackupSnapshotContract.test.mjs`
51-
- `tests/fixtures/backup-snapshots/backup-snapshot-scenarios.json`
50+
- `dev/tests/shared/BackupSnapshotContract.test.mjs`
51+
- `dev/tests/fixtures/backup-snapshots/backup-snapshot-scenarios.json`
5252

dev/docs_build/dev/ProjectInstructions/standards/COLLABORATION_ROLE_CONTRACT.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ Collaboration Role records describe granted project-scoped access for users, Cre
1616
## Validation
1717

1818
- Contract: `src/shared/contracts/collaborationRoleContract.js`
19-
- Test: `tests/shared/CollaborationRoleContract.test.mjs`
20-
- Fixture: `tests/fixtures/collaboration-roles/collaboration-role-scenarios.json`
19+
- Test: `dev/tests/shared/CollaborationRoleContract.test.mjs`
20+
- Fixture: `dev/tests/fixtures/collaboration-roles/collaboration-role-scenarios.json`
2121

dev/docs_build/dev/ProjectInstructions/standards/CREATOR_PROFILE_CONTRACT.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ Creator Profile records describe the public or private creator identity attached
1515
## Validation
1616

1717
- Contract: `src/shared/contracts/creatorProfileContract.js`
18-
- Test: `tests/shared/CreatorProfileContract.test.mjs`
19-
- Fixture: `tests/fixtures/creator-profiles/creator-profile-scenarios.json`
18+
- Test: `dev/tests/shared/CreatorProfileContract.test.mjs`
19+
- Fixture: `dev/tests/fixtures/creator-profiles/creator-profile-scenarios.json`
2020

dev/docs_build/dev/ProjectInstructions/standards/IDENTITY_PERMISSIONS_CONTRACT.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ Identity and permission rules validate database object ownership and access deci
2323

2424
## Validation
2525

26-
- Contract test: `tests/shared/IdentityPermissionsContract.test.mjs`
27-
- Fixture file: `tests/fixtures/identity-permissions/permission-scenarios.json`
26+
- Contract test: `dev/tests/shared/IdentityPermissionsContract.test.mjs`
27+
- Fixture file: `dev/tests/fixtures/identity-permissions/permission-scenarios.json`
2828
- Validation report: `dev/docs_build/dev/reports/identity_permissions_contract_tests_validation.md`

dev/docs_build/dev/ProjectInstructions/standards/MARKETPLACE_TRANSACTION_BOUNDARY_CONTRACT.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ Marketplace Transaction Boundary records describe the platform linkage around ma
1616
## Validation
1717

1818
- Contract: `src/shared/contracts/marketplaceTransactionBoundaryContract.js`
19-
- Test: `tests/shared/MarketplaceTransactionBoundaryContract.test.mjs`
20-
- Fixture: `tests/fixtures/marketplace-transaction-boundaries/marketplace-transaction-boundary-scenarios.json`
19+
- Test: `dev/tests/shared/MarketplaceTransactionBoundaryContract.test.mjs`
20+
- Fixture: `dev/tests/fixtures/marketplace-transaction-boundaries/marketplace-transaction-boundary-scenarios.json`

dev/docs_build/dev/ProjectInstructions/standards/MODERATION_QUEUE_CONTRACT.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ Moderation Queue records describe admin-only moderation intake metadata for mark
1515
## Validation
1616

1717
- Contract: `src/shared/contracts/moderationQueueContract.js`
18-
- Test: `tests/shared/ModerationQueueContract.test.mjs`
19-
- Fixture: `tests/fixtures/moderation-queues/moderation-queue-scenarios.json`
18+
- Test: `dev/tests/shared/ModerationQueueContract.test.mjs`
19+
- Fixture: `dev/tests/fixtures/moderation-queues/moderation-queue-scenarios.json`

dev/docs_build/dev/ProjectInstructions/standards/NOTIFICATION_CONTRACT.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ Notification records describe delivery metadata for platform, project, marketpla
1616
## Validation
1717

1818
- Contract: `src/shared/contracts/notificationContract.js`
19-
- Test: `tests/shared/NotificationContract.test.mjs`
20-
- Fixture: `tests/fixtures/notifications/notification-scenarios.json`
19+
- Test: `dev/tests/shared/NotificationContract.test.mjs`
20+
- Fixture: `dev/tests/fixtures/notifications/notification-scenarios.json`

0 commit comments

Comments
 (0)