-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix: disable tests that depend on Google Maps key
The two disabled tests fail due to not having a working Google Maps API key. The UI fails trying to load the map, and that JavaScript error breaks the UI interactions and navigation. I'm temporarily disabling the tests until we fix the UI or provide a valid API Key.
- Loading branch information
1 parent
3974045
commit 4bf91f4
Showing
2 changed files
with
2 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
describe "delete_site", :type => :request do | ||
|
||
it "should delete site", js:true do | ||
xit "should delete site", js:true do # test fails without a valid Google Maps API key | ||
user = User.make(:email => '[email protected]', :password => '1234567', :phone_number => '855123456789') | ||
page.save_screenshot 'create_collection.png' | ||
collection = create_collection_for (user) | ||
|
@@ -20,4 +20,3 @@ | |
expect(page).to have_no_content ("Health Center") | ||
end | ||
end | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters