We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc44f5f commit 8c3f5f4Copy full SHA for 8c3f5f4
test/patterns.js
@@ -81,8 +81,8 @@ module.exports = [
81
['a****c**?**??*****', ['abcdecdhjk'], null, ['abcdecdhjk']],
82
['[-abc]', ['-'], null, ['-']],
83
['[abc-]', ['-'], null, ['-']],
84
- ['\\', ['\\'], null, ['\\']],
85
- ['[\\\\]', ['\\'], null, ['\\']],
+ ['\\', ['\\'], null, ['\\'], { skip: process.platform === 'win32' }],
+ ['[\\\\]', ['\\'], null, ['\\'], { skip: process.platform === 'win32' }],
86
['[[]', ['['], null, ['[']],
87
['[', ['['], null, ['[']],
88
['[*', ['[abc'], null, ['[abc']],
@@ -175,7 +175,8 @@ module.exports = [
175
'+(a|*\\|c\\\\|d\\\\\\|e\\\\\\\\|f\\\\\\\\\\|g',
176
['+(a|b\\|c\\\\|d\\\\|e\\\\\\\\|f\\\\\\\\|g'],
177
{},
178
- ['+(a|b\\|c\\\\|d\\\\|e\\\\\\\\|f\\\\\\\\|g', 'a', 'b\\c']
+ ['+(a|b\\|c\\\\|d\\\\|e\\\\\\\\|f\\\\\\\\|g', 'a', 'b\\c'],
179
+ {skip: process.platform === 'win32'},
180
],
181
182
// crazy nested {,,} and *(||) tests.
0 commit comments