This is an automated email from the ASF dual-hosted git repository.

sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/whimsy.git


The following commit(s) were added to refs/heads/master by this push:
     new 09fc754  Default to running navigation
09fc754 is described below

commit 09fc75422ceef37fb82a990934853730e228135d
Author: Sebb <s...@apache.org>
AuthorDate: Tue Mar 29 12:51:05 2022 +0100

    Default to running navigation
    
    Also try another simpler check
---
 .github/workflows/unittestagenda.yml   | 2 +-
 www/board/agenda/spec/navigate_spec.rb | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/unittestagenda.yml 
b/.github/workflows/unittestagenda.yml
index 760c0e9..3ce03b7 100644
--- a/.github/workflows/unittestagenda.yml
+++ b/.github/workflows/unittestagenda.yml
@@ -11,7 +11,7 @@ on:
 jobs:
   test:
     strategy:
-      fail-fast: false
+      fail-fast: true
       matrix:
         os: [ubuntu-20.04, 'macos-latest']
         ruby: [2.7]
diff --git a/www/board/agenda/spec/navigate_spec.rb 
b/www/board/agenda/spec/navigate_spec.rb
index 29ce396..b485527 100644
--- a/www/board/agenda/spec/navigate_spec.rb
+++ b/www/board/agenda/spec/navigate_spec.rb
@@ -16,11 +16,11 @@ end
 
 feature 'navigation', js: true do
   it "should navigate to the Cocoon report and back" do
-    skip "headless browser test not run on Travis" if ENV['TRAVIS']
-    # Looks like chromedriver cannot cope for some reason
-    skip "headless browser test not run under GitHub Actions" if 
ENV['GITHUB_ACTIONS']
+    skip "headless browser test not run" if ENV['SKIP_NAVIGATION']
 
     visit '/2015-02-18/Clerezza'
+    expect(page).to have_content('Clerezza') # basic test
+
     expect(page).to have_selector '.navbar-fixed-top.reviewed .navbar-brand',
       text: 'Clerezza'
 

Reply via email to