testilo 43.0.0 → 43.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/AGENTS.md +21 -0
- package/README.md +6 -3
- package/package.json +4 -4
package/AGENTS.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# Testilo - Agent Guide
|
|
2
|
+
|
|
3
|
+
## Commands
|
|
4
|
+
- Lint: `npx eslint <file>`
|
|
5
|
+
- No test suite configured (package.json shows placeholder)
|
|
6
|
+
- Validation: `node validation/<module>/validate` for specific modules (merge, score, rescore, digest, compare)
|
|
7
|
+
- Run modules: `node call <module> [args...]` (e.g., `node call score tsp99`, `node call merge ts25 webOrgs`)
|
|
8
|
+
|
|
9
|
+
## Architecture
|
|
10
|
+
- Node.js app for managing web accessibility testing jobs for Testaro agents
|
|
11
|
+
- Main entry point: `call.js` - universal CLI interface to invoke modules
|
|
12
|
+
- Core modules in root: `batch.js`, `script.js`, `merge.js`, `score.js`, `digest.js`, `difgest.js`, `compare.js`, `summarize.js`, `track.js`, `credit.js`, `issues.js`, `rescore.js`, `reconcile.js`
|
|
13
|
+
- Shared procs in `/procs`: util functions and subdirs for scoring, digesting, comparing, tracking, analyzing
|
|
14
|
+
- Specs, jobs, reports stored in directories configured via `.env` (FUNCTIONDIR, SPECDIR, JOBDIR, REPORTDIR)
|
|
15
|
+
|
|
16
|
+
## Code Style
|
|
17
|
+
- ESLint config: 2-space indent, Stroustrup brace style, single quotes, semicolons required, Unix linebreaks
|
|
18
|
+
- No member expression indent
|
|
19
|
+
- `no-use-before-define` enforced
|
|
20
|
+
- CommonJS modules (`require`, `exports`)
|
|
21
|
+
- CVS Health copyright header required on all files
|
package/README.md
CHANGED
|
@@ -996,13 +996,15 @@ When a user invokes `issues` in this example, the `call` module:
|
|
|
996
996
|
|
|
997
997
|
## Origin
|
|
998
998
|
|
|
999
|
-
Work on the functionalities of Testaro and Testilo began in 2017. It was named
|
|
999
|
+
Work on the functionalities of Testaro and Testilo began in 2017. It was named “Autotest” in early 2021 and then partitioned into the more single-purpose packages Testaro and Testilo in January 2022.
|
|
1000
1000
|
|
|
1001
|
-
On 5 May 2024 ownership of the Testilo repository was transfered from the personal account of contributor Jonathan Pool to the organization account `cvs-health` of CVS Health. The MIT license of the repository did not change.
|
|
1001
|
+
On 5 May 2024 ownership of the Testilo repository was transfered from the personal account of contributor Jonathan Pool to the organization account `cvs-health` of CVS Health. The MIT license of the [repository](https://github.com/cvs-health/testilo) did not change, but the copyright holder changed to CVS Health.
|
|
1002
|
+
|
|
1003
|
+
Maintenance of the repository owned by CVS Health came to an end on 30 September 2025. The current repository was forked from the `cvs-health` repository in October 2025 and then unlinked from the fork network.
|
|
1002
1004
|
|
|
1003
1005
|
## Contributing
|
|
1004
1006
|
|
|
1005
|
-
|
|
1007
|
+
From 5 May 2024 through 30 September 2025, contributors of code to Testilo executed the [CVS Health OSS Project Contributor License Agreement](https://forms.office.com/r/SS09Tn1j6L) for Testilo before any pull request was approved and merged.
|
|
1006
1008
|
|
|
1007
1009
|
## Etymology
|
|
1008
1010
|
|
|
@@ -1010,6 +1012,7 @@ As of 5 May 2024, upon the transfer of the repository ownership to CVS Health, c
|
|
|
1010
1012
|
|
|
1011
1013
|
/*
|
|
1012
1014
|
© 2024 CVS Health and/or one of its affiliates. All rights reserved.
|
|
1015
|
+
© 2025 Jonathan Robert Pool. All rights reserved.
|
|
1013
1016
|
|
|
1014
1017
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1015
1018
|
of this software and associated documentation files (the "Software"), to deal
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "testilo",
|
|
3
|
-
"version": "43.0.
|
|
3
|
+
"version": "43.0.1",
|
|
4
4
|
"description": "Prepares Testaro jobs and processes Testaro reports",
|
|
5
5
|
"main": "call.js",
|
|
6
6
|
"scripts": {
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
},
|
|
9
9
|
"repository": {
|
|
10
10
|
"type": "git",
|
|
11
|
-
"url": "git+https://github.com/
|
|
11
|
+
"url": "git+https://github.com/jrpool/testilo.git"
|
|
12
12
|
},
|
|
13
13
|
"keywords": [
|
|
14
14
|
"accessibility",
|
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
"author": "Jonathan Pool <jonathan.pool@cvshealth.com>",
|
|
19
19
|
"license": "MIT",
|
|
20
20
|
"bugs": {
|
|
21
|
-
"url": "https://github.com/
|
|
21
|
+
"url": "https://github.com/jrpool/testilo/issues"
|
|
22
22
|
},
|
|
23
|
-
"homepage": "https://github.com/
|
|
23
|
+
"homepage": "https://github.com/jrpool/testilo",
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"dotenv": "*",
|
|
26
26
|
"playwright": "*"
|