You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Test run is starting...
Running tests in:
- Safari 11.1.0 / Mac OS X 10.13.4
My page
✖ a11y
1) Error: Cannot prepare tests due to an error.
The "boundTestRun" option value is expected to be a test controller.
Browser: Safari 11.1.0 / Mac OS X 10.13.4
55 | });
56 | })
57 |});
58 |
59 |module.exports = functionaxeCheck (t, context, options) {
> 60 |return hasAxe.with({ boundTestRun: t })()
61 | .then(function (result) {
62 |if (!result)
63 |return injectAxe.with({ boundTestRun: t })();
64 |
65 |returnPromise.resolve();
at axeCheck (.../node_modules/axe-testcafe/index.js:60:23)
at <anonymous> (.../test/e2e/page/my-page/fixture/myPage.fixture.js:11:37)
...
If I run the test with testcafe instead of testcafe-live everything is fine.
The text was updated successfully, but these errors were encountered:
I'm also running into this when using Yarn Workspaces in a monorepo. I had to pull the axe-testcafe into our monorepo as its own package to get this to work.
This is my test:
Here is how I run the test:
This is the result:
If I run the test with
testcafe
instead oftestcafe-live
everything is fine.The text was updated successfully, but these errors were encountered: