diff --git a/test_themes/tests/test_crawl.py b/test_themes/tests/test_crawl.py index 735e609b0..3b007cf72 100644 --- a/test_themes/tests/test_crawl.py +++ b/test_themes/tests/test_crawl.py @@ -48,6 +48,5 @@ def test_02_homepage_tour_every_theme(self): # when designing a theme at the moment. Website = self.env['website'] websites_themes = Website.get_test_themes_websites() - websites_themes = [theme for index, theme in enumerate(websites_themes) if index not in (17, 23)] # FIXME for website in websites_themes: self.start_tour(f"/web?fw={website.id}", 'homepage', login='admin') diff --git a/theme_loftspace/static/src/js/tour.js b/theme_loftspace/static/src/js/tour.js index 1558c42de..417140939 100644 --- a/theme_loftspace/static/src/js/tour.js +++ b/theme_loftspace/static/src/js/tour.js @@ -57,7 +57,6 @@ wTourUtils.registerThemeHomepageTour("loftspace_tour", () => [ ...wTourUtils.insertSnippet(snippets[5]), ...wTourUtils.insertSnippet(snippets[6]), ...wTourUtils.insertSnippet(snippets[7]), - ...wTourUtils.insertSnippet(snippets[8]), ...wTourUtils.clickOnSnippet(snippets[4]), wTourUtils.changeBackgroundColor(), wTourUtils.selectColorPalette(), diff --git a/theme_real_estate/static/src/js/tour.js b/theme_real_estate/static/src/js/tour.js index 09c819779..4aacf28e3 100644 --- a/theme_real_estate/static/src/js/tour.js +++ b/theme_real_estate/static/src/js/tour.js @@ -67,5 +67,4 @@ wTourUtils.registerThemeHomepageTour("real_estate_tour", () => [ ...wTourUtils.insertSnippet(snippets[6]), ...wTourUtils.insertSnippet(snippets[7]), ...wTourUtils.insertSnippet(snippets[8]), - ...wTourUtils.insertSnippet(snippets[9]), ]);