https://github.com/testomatio/linked-testruns-test
Minimal Playwright project for verifying #8375 (Linked Testruns message)
https://github.com/testomatio/linked-testruns-test
Last synced: 6 days ago
JSON representation
Minimal Playwright project for verifying #8375 (Linked Testruns message)
- Host: GitHub
- URL: https://github.com/testomatio/linked-testruns-test
- Owner: testomatio
- Created: 2026-05-04T13:54:09.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2026-05-04T13:57:45.000Z (about 2 months ago)
- Last Synced: 2026-05-04T15:41:49.075Z (about 1 month ago)
- Language: TypeScript
- Size: 32.2 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Linked Testruns Test Project
Minimal Playwright project for verifying Linked Testruns message behavior.
## Setup
```bash
npm install
```
## Report into a Manual Run
Create a Manual Run in Testomat.io UI first, then report tests into it. Replace `TESTOMATIO` with your project's reporter API key and `TESTOMATIO_RUN` with the run UID.
```bash
# Linked + unlinked tests
TESTOMATIO=tstmt_xxx TESTOMATIO_RUN= TESTOMATIO_CREATE=1 \
npx playwright test tests/linked.spec.ts tests/unlinked.spec.ts
# Only unlinked tests (edge case)
TESTOMATIO=tstmt_xxx TESTOMATIO_RUN= TESTOMATIO_CREATE=1 \
npx playwright test tests/only-unlinked.spec.ts tests/unlinked.spec.ts
```
`@T` tag IDs in `linked.spec.ts` must match real test IDs in the target project.