Skip to content

Commit

Permalink
Don't test ignore hidden on windows right now.
Browse files Browse the repository at this point in the history
  • Loading branch information
radovskyb committed Dec 13, 2018
1 parent 61a1ff8 commit 5f7b4aa
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions watcher_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,11 @@ func TestRemove(t *testing.T) {
// TODO: Test remove recursive function.

func TestIgnoreHiddenFilesRecursive(t *testing.T) {
// TODO: Write tests for ignore hidden on windows.
if runtime.GOOS == "windows" {
return
}

testDir, teardown := setup(t)
defer teardown()

Expand Down Expand Up @@ -327,6 +332,11 @@ func TestIgnoreHiddenFilesRecursive(t *testing.T) {
}

func TestIgnoreHiddenFiles(t *testing.T) {
// TODO: Write tests for ignore hidden on windows.
if runtime.GOOS == "windows" {
return
}

testDir, teardown := setup(t)
defer teardown()

Expand Down

0 comments on commit 5f7b4aa

Please sign in to comment.