mirror of
https://github.com/gofiber/fiber.git
synced 2025-07-09 03:58:51 +00:00
Skip linux test if running Windows
This commit is contained in:
parent
42e4a1a1d9
commit
c65df17d93
@ -852,6 +852,11 @@ func Test_Static_Compress_WithFileSuffixes(t *testing.T) {
|
||||
}
|
||||
|
||||
func Test_Static_PathTraversal(t *testing.T) {
|
||||
// Skip this test if running on Windows
|
||||
if runtime.GOOS == "windows" {
|
||||
t.Skip("Skipping Windows-specific tests")
|
||||
}
|
||||
|
||||
t.Parallel()
|
||||
app := fiber.New()
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user