I would like to run tests from another fixtures using assertions like: .describe
.it
.fit
.test
, etc
I already import the Testcafe module:
import { testcafe} from 'testcafe';
Or
import { t, Selector, describe} from 'testcafe';
And I tried many other combinations but always I get the same error.
I have installed locally the last version of Testcafe
and I have installed the latest chai package.
I am on windows 11 with the last version of node.js
.
This is the error:
_index.X is not a function
Where "X" is any of these: fit it describe fdescribe, etc
Note: Other functions as fixture, test, constructor, are working without any issue.