TestCafe can't detect test files located on a Windows network drive #3918
Labels
AREA: server
STATE: Auto-locked
An issue has been automatically locked by the Lock bot.
SYSTEM: runner
TYPE: bug
The described behavior is considered as wrong (bug).
Milestone
What is your Test Scenario?
Use test files located on a network drive.
What is the Current behavior?
TestCafe says that there is no files.
What is the Expected behavior?
TestCafe should run tests from a network drive.
Explanation:
We use an old
globby
version for searching test files. It is built upon [isaacs/glob](http://github.com/isaacs/node-glob] that doesn't with network drives. Newerglobby
versions use fast-glob internally, that works well with network drives, but have different search algorithm:glob
uses a depth-first search algorithm,fast-glob
uses a width-first search algorithm. If we just update to the latestglobby
version, we can change test execution order.Your Environment details:
The text was updated successfully, but these errors were encountered: