public async void Admin_panel_widgets_page_displays_all_areas_in_the_current_theme()
        {
            // When the Admin Panel Widgets page is requested
            var areas = await _svc.GetCurrentThemeAreasAsync();

            // Then it will display all areas in the current theme
            Assert.Equal(3, areas.ToList().Count());
        }