testaro 55.0.6 → 55.1.0

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.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/run.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "testaro",
3
- "version": "55.0.6",
3
+ "version": "55.1.0",
4
4
  "description": "Run 1000 web accessibility tests from 11 tools and get a standardized report",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -27,7 +27,7 @@
27
27
  },
28
28
  "homepage": "https://github.com/cvs-health/testaro#readme",
29
29
  "dependencies": {
30
- "@qualweb/core": "0.0.0-develop-20241217135157",
30
+ "@qualweb/core": "*",
31
31
  "@qualweb/act-rules": "*",
32
32
  "@qualweb/wcag-techniques": "*",
33
33
  "@qualweb/best-practices": "*",
package/run.js CHANGED
@@ -650,7 +650,7 @@ const doActs = async (report) => {
650
650
  const actResult = await new Promise(resolve => {
651
651
  let closed = false;
652
652
  const child = fork(
653
- 'procs/doTestAct', [actIndex], {timeout: 1000 * timeLimits[act.which] || 15000}
653
+ `${__dirname}/procs/doTestAct`, [actIndex], {timeout: 1000 * timeLimits[act.which] || 15000}
654
654
  );
655
655
  child.on('message', message => {
656
656
  if (! closed) {