File tree Expand file tree Collapse file tree 2 files changed +14
-1
lines changed
fixtures/application.a/webapp Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "_version" : " 1.1.0" ,
3
+ "sap.app" : {
4
+ "_version" : " 1.1.0" ,
5
+ "id" : " id1" ,
6
+ "type" : " application" ,
7
+ "applicationVersion" : {
8
+ "version" : " 1.2.2"
9
+ },
10
+ "embeds" : [" embedded" ],
11
+ "title" : " {{title}}"
12
+ }
13
+ }
Original file line number Diff line number Diff line change @@ -570,7 +570,7 @@ test("Get index of resources", (t) => {
570
570
t . deepEqual ( res . statusCode , 200 , "Correct HTTP status code" ) ;
571
571
t . is ( res . headers [ "content-type" ] , "text/html; charset=utf-8" , "Correct content type" ) ;
572
572
t . is ( / < t i t l e > ( .* ) < \/ t i t l e > / i. exec ( res . text ) [ 1 ] , "Index of /" , "Found correct title" ) ;
573
- t . deepEqual ( res . text . match ( / < l i / g) . length , 8 , "Found correct amount of <li> elements" ) ;
573
+ t . deepEqual ( res . text . match ( / < l i / g) . length , 9 , "Found correct amount of <li> elements" ) ;
574
574
} ) ,
575
575
request . get ( "/resources" ) . then ( ( res ) => {
576
576
t . deepEqual ( res . statusCode , 200 , "Correct HTTP status code" ) ;
You can’t perform that action at this time.
0 commit comments