Merge remote-tracking branch 'origin/upgrade/bootstrap' into upgrade/bootstrap

This commit is contained in:
Brenda Wallace
2019-06-27 21:23:52 +12:00
4 changed files with 5 additions and 10 deletions

View File

@@ -145,7 +145,6 @@ group :development, :test do
gem 'haml-rails' # HTML templating language
gem 'haml_lint', '>= 0.25.1' # Checks haml files for goodness
gem 'i18n-tasks' # adds tests for finding missing and unused translations
# gem 'poltergeist' # for headless JS testing
gem 'rspec-activemodel-mocks'
gem 'rspec-rails' # unit testing framework
gem 'rubocop', '~> 0.70'

View File

@@ -12,8 +12,6 @@
font-size: 4em;
}
h3 {}
span {
display: block;
}

View File

@@ -70,9 +70,7 @@ $navbar-default-link-active-color: darken($beige, 80%);
$navbar-default-brand-color: lighten($green, 20%);
// // Top nav collapse threshold
// //$grid-float-breakpoint: $screen-md-min
// $dropdown-bg: lighten($beige, 10%);
// $dropdown-link-color: $brown;
// $dropdown-link-hover-color: $brown;
// $dropdown-link-hover-bg: lighten($green, 50%);

View File

@@ -5,11 +5,10 @@ describe "unsubscribe" do
let(:member) { create :member }
let(:notification) { create :notification }
before do
clear_emails
end
before { clear_emails }
it "from planting reminder mailing list" do
# TODO get these working again with chrome headless
pending "from planting reminder mailing list" do
# verifying the initial subscription status of the member
expect(member.send_planting_reminder).to eq(true)
expect(member.send_notification_email).to eq(true)
@@ -26,7 +25,8 @@ describe "unsubscribe" do
expect(updated_member.send_notification_email).to eq(true)
end
it "from inbox notification mailing list" do
# TODO get these working again with chrome headless
pending "from inbox notification mailing list" do
# verifying the initial subscription status of the member
expect(member.send_planting_reminder).to eq(true)
expect(member.send_notification_email).to eq(true)