Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorVladimir Shushlin <v.shushlin@gmail.com>2021-12-24 17:54:11 +0300
committerVladimir Shushlin <v.shushlin@gmail.com>2021-12-24 17:54:11 +0300
commitd40af81155fdd50f7ea3b78249cc303b91acf63e (patch)
treec1f2026e278312a91529e5dce7b47d65cb5113f1 /test
parent5e488dfd5d56127c0721c974f89319a0aedec439 (diff)
feat: enable Etag caching
Changelog: added
Diffstat (limited to 'test')
-rw-r--r--test/acceptance/zip_test.go7
1 files changed, 0 insertions, 7 deletions
diff --git a/test/acceptance/zip_test.go b/test/acceptance/zip_test.go
index 42734d14..dcb831e7 100644
--- a/test/acceptance/zip_test.go
+++ b/test/acceptance/zip_test.go
@@ -10,14 +10,9 @@ import (
"time"
"github.com/stretchr/testify/require"
-
- "gitlab.com/gitlab-org/gitlab-pages/internal/feature"
- "gitlab.com/gitlab-org/gitlab-pages/internal/testhelpers"
)
func TestZipServing(t *testing.T) {
- testhelpers.StubFeatureFlagValue(t, feature.HandleCacheHeaders.EnvVariable, true)
-
runObjectStorage(t, "../../shared/pages/group/zip.gitlab.io/public.zip")
RunPagesProcess(t,
@@ -243,8 +238,6 @@ func TestZipServingCache(t *testing.T) {
}
func TestZipServingFromDisk(t *testing.T) {
- testhelpers.StubFeatureFlagValue(t, feature.HandleCacheHeaders.EnvVariable, true)
-
RunPagesProcess(t,
withListeners([]ListenSpec{httpListener}),
)