File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ class TestExclude {
104
104
105
105
globSync ( cwd = this . cwd ) {
106
106
const globPatterns = getExtensionPattern ( this . extension || [ ] ) ;
107
- const globOptions = { cwd, nodir : true , dot : true } ;
107
+ const globOptions = { cwd, nodir : true , dot : true , posix : true } ;
108
108
/* If we don't have any excludeNegated then we can optimize glob by telling
109
109
* it to not iterate into unwanted directory trees (like node_modules). */
110
110
if ( this . excludeNegated . length === 0 ) {
@@ -118,7 +118,7 @@ class TestExclude {
118
118
119
119
async glob ( cwd = this . cwd ) {
120
120
const globPatterns = getExtensionPattern ( this . extension || [ ] ) ;
121
- const globOptions = { cwd, nodir : true , dot : true } ;
121
+ const globOptions = { cwd, nodir : true , dot : true , posix : true } ;
122
122
/* If we don't have any excludeNegated then we can optimize glob by telling
123
123
* it to not iterate into unwanted directory trees (like node_modules). */
124
124
if ( this . excludeNegated . length === 0 ) {
You can’t perform that action at this time.
0 commit comments