diff --git a/app/views/verification/letter/show.html.erb b/app/views/verification/letter/show.html.erb
index 75cc5811f..b4d82399c 100644
--- a/app/views/verification/letter/show.html.erb
+++ b/app/views/verification/letter/show.html.erb
@@ -1,5 +1,4 @@
- <% track_event(category: "verification", action: "start_letter") %>
<%= back_link_to account_path, t("verification.back") %>
diff --git a/app/views/verification/residence/new.html.erb b/app/views/verification/residence/new.html.erb
index b074a8db6..052527842 100644
--- a/app/views/verification/residence/new.html.erb
+++ b/app/views/verification/residence/new.html.erb
@@ -1,5 +1,4 @@
- <% track_event(category: "verification", action: "start_census") %>
diff --git a/app/views/verification/sms/edit.html.erb b/app/views/verification/sms/edit.html.erb
index 4cb0e11ee..7481c1395 100644
--- a/app/views/verification/sms/edit.html.erb
+++ b/app/views/verification/sms/edit.html.erb
@@ -1,5 +1,4 @@
- <% track_event(category: "verification", action: "start_sms") %>
diff --git a/app/views/verification/sms/new.html.erb b/app/views/verification/sms/new.html.erb
index bef0e8539..ad8b70617 100644
--- a/app/views/verification/sms/new.html.erb
+++ b/app/views/verification/sms/new.html.erb
@@ -1,5 +1,4 @@
- <% track_event(category: "verification", action: "success_census") %>
diff --git a/spec/system/tracks_spec.rb b/spec/system/tracks_spec.rb
deleted file mode 100644
index 42dfe493c..000000000
--- a/spec/system/tracks_spec.rb
+++ /dev/null
@@ -1,115 +0,0 @@
-require "rails_helper"
-
-describe "Tracking" do
- context "Custom variable" do
- scenario "Usertype anonymous" do
- visit proposals_path
-
- expect(page.html).to include "anonymous"
- end
-
- scenario "Usertype level_1_user" do
- create(:geozone)
- user = create(:user)
- login_as(user)
-
- visit proposals_path
-
- expect(page.html).to include "level_1_user"
- end
-
- scenario "Usertype level_2_user" do
- create(:geozone)
- user = create(:user)
- login_as(user)
-
- visit account_path
- click_link "Verify my account"
-
- verify_residence
-
- fill_in "sms_phone", with: "611111111"
- click_button "Send"
-
- user = user.reload
- fill_in "sms_confirmation_code", with: user.sms_confirmation_code
- click_button "Send"
-
- expect(page.html).to include "level_2_user"
- end
- end
-
- context "Tracking events" do
- scenario "Verification: start census" do
- user = create(:user)
- login_as(user)
-
- visit account_path
- click_link "Verify my account"
-
- expect(page).to have_selector "[data-track-event-category='verification']", visible: :all
- expect(page).to have_selector "[data-track-event-action='start_census']", visible: :all
- end
-
- scenario "Verification: success census & start sms" do
- create(:geozone)
- user = create(:user)
- login_as(user)
-
- visit account_path
- click_link "Verify my account"
-
- verify_residence
-
- fill_in "sms_phone", with: "611111111"
- click_button "Send"
-
- expect(page).to have_selector "[data-track-event-category='verification']", visible: :all
- expect(page).to have_selector "[data-track-event-action='start_sms']", visible: :all
- end
-
- scenario "Verification: success sms" do
- create(:geozone)
- user = create(:user)
- login_as(user)
-
- visit account_path
- click_link "Verify my account"
-
- verify_residence
-
- fill_in "sms_phone", with: "611111111"
- click_button "Send"
-
- user = user.reload
- fill_in "sms_confirmation_code", with: user.sms_confirmation_code
- click_button "Send"
-
- expect(page).to have_selector "[data-track-event-category='verification']", visible: :all
- expect(page).to have_selector "[data-track-event-action='success_sms']", visible: :all
- end
-
- scenario "Verification: letter" do
- create(:geozone)
- user = create(:user)
- login_as(user)
-
- visit account_path
- click_link "Verify my account"
-
- verify_residence
-
- fill_in "sms_phone", with: "611111111"
- click_button "Send"
-
- user = user.reload
- fill_in "sms_confirmation_code", with: user.sms_confirmation_code
- click_button "Send"
-
- click_link "Send me a letter with the code"
-
- expect(page).to have_selector "[data-track-event-category='verification']", visible: :all
- expect(page).to have_selector "[data-track-event-action='start_letter']", visible: :all
- end
- end
-end