This code works without any errors, the key point was adding the correct columns (1:5) in point_accuracy_measures in the accuracy function.
fit %>%
fabletools::forecast(h = 1) %>%
fabletools::accuracy(Time_Series_test, measures = point_accuracy_measures[1:5]) %>%
dplyr::select(.model:MAPE) %>%
dplyr::arrange(RMSE)