diff --git a/tests/spec/features/security_spec.rb b/tests/spec/features/security_spec.rb index bbfacae..67ac09d 100644 --- a/tests/spec/features/security_spec.rb +++ b/tests/spec/features/security_spec.rb @@ -13,7 +13,7 @@ scenario "a notice is present for filesystem snoopers" do within(:header) { click_on("Run") } within(:output, :stdout) do - expect(page).to have_content 'www.rust-lang.org/policies/security' + expect(page).to have_content 'https://github.com/tari-project/tari/blob/development/SECURITY.md' end end diff --git a/tests/spec/features/sharing_with_others_spec.rb b/tests/spec/features/sharing_with_others_spec.rb index 80fe0d7..130aad5 100644 --- a/tests/spec/features/sharing_with_others_spec.rb +++ b/tests/spec/features/sharing_with_others_spec.rb @@ -11,6 +11,7 @@ # This test does more than one thing so we can avoid sending too # many requests to GitHub scenario "saving to a Gist" do + skip "Gist not supported yet" editor.set(code) in_channel_menu { click_on("Nightly") } diff --git a/tests/spec/features/url_parameters_spec.rb b/tests/spec/features/url_parameters_spec.rb index 4f7d302..8bd8ea2 100644 --- a/tests/spec/features/url_parameters_spec.rb +++ b/tests/spec/features/url_parameters_spec.rb @@ -32,12 +32,14 @@ end scenario "loading from a Gist" do + skip "Gist not supported yet" visit '/?gist=20fb1e0475f890d0fdb7864e3ad0820c' expect(editor).to have_line 'This source code came from a Gist' end scenario "loading from a Gist preserves the links" do + skip "Gist not supported yet" visit '/?gist=20fb1e0475f890d0fdb7864e3ad0820c' within(:output) { click_on 'Share' } @@ -45,6 +47,7 @@ end scenario "loading from a Gist with a channel preserves the channel" do + skip "Gist not supported yet" visit '/?gist=20fb1e0475f890d0fdb7864e3ad0820c&version=beta' expect(page).to have_channel('Beta') @@ -52,6 +55,7 @@ end scenario "loading from a Gist with a mode preserves the mode" do + skip "Gist not supported yet" visit '/?gist=20fb1e0475f890d0fdb7864e3ad0820c&mode=release' expect(page).to have_mode('Release') @@ -59,6 +63,7 @@ end scenario "loading from a Gist with an edition preserves the edition" do + skip "Gist not supported yet" visit '/?gist=20fb1e0475f890d0fdb7864e3ad0820c&edition=2018' expect(page).to have_edition('2018') @@ -66,6 +71,7 @@ end scenario "loading from a Gist without an edition selects Rust 2015" do + skip "Gist not supported yet" visit '/?gist=20fb1e0475f890d0fdb7864e3ad0820c' expect(page).to have_edition('2015')