diff --git a/test/tests/components/ws-manager/tasks_test.go b/test/tests/components/ws-manager/tasks_test.go index f36f26a2691275..e6f081dc1acc29 100644 --- a/test/tests/components/ws-manager/tasks_test.go +++ b/test/tests/components/ws-manager/tasks_test.go @@ -46,16 +46,19 @@ func TestRegularWorkspaceTasks(t *testing.T) { Name: "pvc-init", Task: gitpod.TasksItems{Init: "touch /workspace/gitpod/init-ran; exit"}, LookForFile: "init-ran", + FF: []wsmanapi.WorkspaceFeatureFlag{wsmanapi.WorkspaceFeatureFlag_PERSISTENT_VOLUME_CLAIM}, }, { Name: "pvc-before", Task: gitpod.TasksItems{Before: "touch /workspace/gitpod/before-ran; exit"}, LookForFile: "before-ran", + FF: []wsmanapi.WorkspaceFeatureFlag{wsmanapi.WorkspaceFeatureFlag_PERSISTENT_VOLUME_CLAIM}, }, { Name: "pvc-command", Task: gitpod.TasksItems{Command: "touch /workspace/gitpod/command-ran; exit"}, LookForFile: "command-ran", + FF: []wsmanapi.WorkspaceFeatureFlag{wsmanapi.WorkspaceFeatureFlag_PERSISTENT_VOLUME_CLAIM}, }, }