File tree Expand file tree Collapse file tree 2 files changed +13
-12
lines changed
test/e2e/edge-compiler-can-import-blob-assets/app/pages/api Expand file tree Collapse file tree 2 files changed +13
-12
lines changed Original file line number Diff line number Diff line change @@ -76,10 +76,12 @@ jobs:
76
76
- uses : actions/download-artifact@v3
77
77
with :
78
78
path : reports
79
+ - name : Combine reports
80
+ run : npx junit-report-merger combined.xml reports/**/*.xml
79
81
- uses : phoenix-actions/test-reporting@v10
80
82
with :
81
83
name : Jest Tests
82
84
output-to : ' step-summary'
83
- path : ' reports/**/* .xml' # Path to test results (inside artifact .zip)
84
- max-annotations : 0 # Maximum number of annotations to be created
85
- reporter : jest-junit # Format of test results
85
+ path : ' combined .xml'
86
+ max-annotations : 0 # Annotations were done in the test steps
87
+ reporter : jest-junit
Original file line number Diff line number Diff line change @@ -27,13 +27,13 @@ const handlers = new Map([
27
27
return fetch ( url )
28
28
} ,
29
29
] ,
30
- [
31
- 'from-node-module' ,
32
- async ( ) => {
33
- const url = new URL ( 'my-pkg/hello/world.json' , import . meta. url )
34
- return fetch ( url )
35
- } ,
36
- ] ,
30
+ // [
31
+ // 'from-node-module',
32
+ // async () => {
33
+ // const url = new URL('my-pkg/hello/world.json', import.meta.url)
34
+ // return fetch(url)
35
+ // },
36
+ // ],
37
37
[
38
38
'remote-full' ,
39
39
async ( ) => {
@@ -50,5 +50,4 @@ const handlers = new Map([
50
50
] ,
51
51
] )
52
52
53
- const defaultHandler = async ( ) =>
54
- new Response ( 'Invalid handler' , { status : 400 } )
53
+ const defaultHandler = async ( ) => new Response ( 'Invalid handler' , { status : 400 } )
You can’t perform that action at this time.
0 commit comments