We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 61a1ff8 commit 5f7b4aaCopy full SHA for 5f7b4aa
watcher_test.go
@@ -268,6 +268,11 @@ func TestRemove(t *testing.T) {
268
// TODO: Test remove recursive function.
269
270
func TestIgnoreHiddenFilesRecursive(t *testing.T) {
271
+ // TODO: Write tests for ignore hidden on windows.
272
+ if runtime.GOOS == "windows" {
273
+ return
274
+ }
275
+
276
testDir, teardown := setup(t)
277
defer teardown()
278
@@ -327,6 +332,11 @@ func TestIgnoreHiddenFilesRecursive(t *testing.T) {
327
332
}
328
333
329
334
func TestIgnoreHiddenFiles(t *testing.T) {
335
336
337
338
339
330
340
331
341
342
0 commit comments