File tree Expand file tree Collapse file tree 3 files changed +10
-6
lines changed
app/packs/src/decidim/decidim_awesome/awesome_map/api Expand file tree Collapse file tree 3 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 79
79
80
80
- run : tar -zcf /tmp/testapp-env.tar.gz ./spec/decidim_dummy_app
81
81
82
- - uses : actions/upload-artifact@v3
82
+ - uses : actions/upload-artifact@v4
83
83
with :
84
84
name : workspace
85
85
path : /tmp/testapp-env.tar.gz
@@ -139,7 +139,7 @@ jobs:
139
139
- run : |
140
140
sudo apt install wkhtmltopdf imagemagick 7zip
141
141
142
- - uses : actions/download-artifact@v3
142
+ - uses : actions/download-artifact@v4
143
143
with :
144
144
name : workspace
145
145
path : /tmp
@@ -165,8 +165,8 @@ jobs:
165
165
- name : Upload coverage reports to Codecov
166
166
uses : codecov/codecov-action@v3
167
167
168
- - uses : actions/upload-artifact@v3
169
- if : always()
168
+ - uses : actions/upload-artifact@v4
169
+ if : false
170
170
with :
171
171
name : screenshots
172
172
path : ./spec/decidim_dummy_app/tmp/screenshots
Original file line number Diff line number Diff line change @@ -29,6 +29,10 @@ export default class Fetcher {
29
29
const api = new ApiFetcher ( this . query , variables ) ;
30
30
api . fetchAll ( ( result ) => {
31
31
if ( result ) {
32
+ if ( ! result . component ) {
33
+ this . onFinished ( ) ;
34
+ return ;
35
+ }
32
36
const collection = result . component [ this . collection ] ;
33
37
// console.log("collection", collection)
34
38
Original file line number Diff line number Diff line change 25
25
26
26
it "allows to change the time zone" do
27
27
within ".card__list-metadata" do
28
- expect ( page ) . to have_content ( "04 :00 AM -01 " )
28
+ expect ( page ) . to have_content ( "05 :00 AM +00 " )
29
29
end
30
30
visit decidim . account_path
31
31
expect ( page ) . to have_select ( "user_user_time_zone" , selected : "(GMT-01:00) Azores" )
49
49
50
50
it "does not allow to change the time zone" do
51
51
within ".card__list-metadata" do
52
- expect ( page ) . to have_content ( "04 :00 AM -01 " )
52
+ expect ( page ) . to have_content ( "05 :00 AM +00 " )
53
53
end
54
54
visit decidim . account_path
55
55
expect ( page ) . not_to have_select ( "user_user_time_zone" )
You can’t perform that action at this time.
0 commit comments