@@ -150,7 +150,7 @@ test.serial("generateLibraryPreload", async (t) => {
150150
151151 t . is ( workspace . byGlob . callCount , 2 ,
152152 "workspace.byGlob should have been called twice" ) ;
153- t . deepEqual ( workspace . byGlob . getCall ( 0 ) . args , [ "/**/*.{js,json,xml,html,properties,library,js.map}" ] ,
153+ t . deepEqual ( workspace . byGlob . getCall ( 0 ) . args , [ "/resources/ **/*.{js,json,xml,html,properties,library,js.map}" ] ,
154154 "workspace.byGlob should have been called with expected pattern" ) ;
155155 t . deepEqual ( workspace . byGlob . getCall ( 1 ) . args , [ "/resources/**/.library" ] ,
156156 "workspace.byGlob should have been called with expected pattern" ) ;
@@ -461,7 +461,7 @@ test.serial("generateLibraryPreload for sap.ui.core (w/o ui5loader.js)", async (
461461
462462 t . is ( workspace . byGlob . callCount , 2 ,
463463 "workspace.byGlob should have been called twice" ) ;
464- t . deepEqual ( workspace . byGlob . getCall ( 0 ) . args , [ "/**/*.{js,json,xml,html,properties,library,js.map}" ] ,
464+ t . deepEqual ( workspace . byGlob . getCall ( 0 ) . args , [ "/resources/ **/*.{js,json,xml,html,properties,library,js.map}" ] ,
465465 "workspace.byGlob should have been called with expected pattern" ) ;
466466 t . deepEqual ( workspace . byGlob . getCall ( 1 ) . args , [ "/resources/**/.library" ] ,
467467 "workspace.byGlob should have been called with expected pattern" ) ;
@@ -521,9 +521,9 @@ test.serial("generateLibraryPreload for sap.ui.core (/w ui5loader.js)", async (t
521521
522522 t . is ( workspace . byGlob . callCount , 3 ,
523523 "workspace.byGlob should have been called three times" ) ;
524- t . deepEqual ( workspace . byGlob . getCall ( 0 ) . args , [ "/**/*.{js,json,xml,html,properties,library,js.map}" ] ,
524+ t . deepEqual ( workspace . byGlob . getCall ( 0 ) . args , [ "/resources/ **/*.{js,json,xml,html,properties,library,js.map}" ] ,
525525 "workspace.byGlob should have been called with expected pattern" ) ;
526- t . deepEqual ( workspace . byGlob . getCall ( 1 ) . args , [ "/**/*.{js,json,xml,html,properties,library,js.map}" ] ,
526+ t . deepEqual ( workspace . byGlob . getCall ( 1 ) . args , [ "/resources/ **/*.{js,json,xml,html,properties,library,js.map}" ] ,
527527 "workspace.byGlob should have been called with expected pattern" ) ;
528528 t . deepEqual ( workspace . byGlob . getCall ( 2 ) . args , [ "/resources/**/.library" ] ,
529529 "workspace.byGlob should have been called with expected pattern" ) ;
@@ -947,9 +947,9 @@ test.serial("generateLibraryPreload for sap.ui.core with old specVersion defined
947947
948948 t . is ( workspace . byGlob . callCount , 3 ,
949949 "workspace.byGlob should have been called three times" ) ;
950- t . deepEqual ( workspace . byGlob . getCall ( 0 ) . args , [ "/**/*.{js,json,xml,html,properties,library,js.map}" ] ,
950+ t . deepEqual ( workspace . byGlob . getCall ( 0 ) . args , [ "/resources/ **/*.{js,json,xml,html,properties,library,js.map}" ] ,
951951 "workspace.byGlob should have been called with expected pattern" ) ;
952- t . deepEqual ( workspace . byGlob . getCall ( 1 ) . args , [ "/**/*.{js,json,xml,html,properties,library,js.map}" ] ,
952+ t . deepEqual ( workspace . byGlob . getCall ( 1 ) . args , [ "/resources/ **/*.{js,json,xml,html,properties,library,js.map}" ] ,
953953 "workspace.byGlob should have been called with expected pattern" ) ;
954954 t . deepEqual ( workspace . byGlob . getCall ( 2 ) . args , [ "/resources/**/.library" ] ,
955955 "workspace.byGlob should have been called with expected pattern" ) ;
@@ -1486,7 +1486,7 @@ test.serial("generateLibraryPreload for sap.ui.core with own bundle configuratio
14861486
14871487 t . is ( workspace . byGlob . callCount , 2 ,
14881488 "workspace.byGlob should have been called twice" ) ;
1489- t . deepEqual ( workspace . byGlob . getCall ( 0 ) . args , [ "/**/*.{js,json,xml,html,properties,library,js.map}" ] ,
1489+ t . deepEqual ( workspace . byGlob . getCall ( 0 ) . args , [ "/resources/ **/*.{js,json,xml,html,properties,library,js.map}" ] ,
14901490 "workspace.byGlob should have been called with expected pattern" ) ;
14911491 t . deepEqual ( workspace . byGlob . getCall ( 1 ) . args , [ "/resources/**/.library" ] ,
14921492 "workspace.byGlob should have been called with expected pattern" ) ;
@@ -1677,7 +1677,7 @@ test.serial("generateLibraryPreload for sap.ui.core with own bundle configuratio
16771677
16781678 t . is ( workspace . byGlob . callCount , 2 ,
16791679 "workspace.byGlob should have been called twice" ) ;
1680- t . deepEqual ( workspace . byGlob . getCall ( 0 ) . args , [ "/**/*.{js,json,xml,html,properties,library,js.map}" ] ,
1680+ t . deepEqual ( workspace . byGlob . getCall ( 0 ) . args , [ "/resources/ **/*.{js,json,xml,html,properties,library,js.map}" ] ,
16811681 "workspace.byGlob should have been called with expected pattern" ) ;
16821682 t . deepEqual ( workspace . byGlob . getCall ( 1 ) . args , [ "/resources/**/.library" ] ,
16831683 "workspace.byGlob should have been called with expected pattern" ) ;
@@ -1805,7 +1805,7 @@ test.serial("generateLibraryPreload with excludes", async (t) => {
18051805
18061806 t . is ( workspace . byGlob . callCount , 2 ,
18071807 "workspace.byGlob should have been called twice" ) ;
1808- t . deepEqual ( workspace . byGlob . getCall ( 0 ) . args , [ "/**/*.{js,json,xml,html,properties,library,js.map}" ] ,
1808+ t . deepEqual ( workspace . byGlob . getCall ( 0 ) . args , [ "/resources/ **/*.{js,json,xml,html,properties,library,js.map}" ] ,
18091809 "workspace.byGlob should have been called with expected pattern" ) ;
18101810 t . deepEqual ( workspace . byGlob . getCall ( 1 ) . args , [ "/resources/**/.library" ] ,
18111811 "workspace.byGlob should have been called with expected pattern" ) ;
@@ -1939,9 +1939,9 @@ test.serial("generateLibraryPreload for sap.ui.core (/w ui5loader.js), UI5 Versi
19391939
19401940 t . is ( workspace . byGlob . callCount , 3 ,
19411941 "workspace.byGlob should have been called three times" ) ;
1942- t . deepEqual ( workspace . byGlob . getCall ( 0 ) . args , [ "/**/*.{js,json,xml,html,properties,library,js.map}" ] ,
1942+ t . deepEqual ( workspace . byGlob . getCall ( 0 ) . args , [ "/resources/ **/*.{js,json,xml,html,properties,library,js.map}" ] ,
19431943 "workspace.byGlob should have been called with expected pattern" ) ;
1944- t . deepEqual ( workspace . byGlob . getCall ( 1 ) . args , [ "/**/*.{js,json,xml,html,properties,library,js.map}" ] ,
1944+ t . deepEqual ( workspace . byGlob . getCall ( 1 ) . args , [ "/resources/ **/*.{js,json,xml,html,properties,library,js.map}" ] ,
19451945 "workspace.byGlob should have been called with expected pattern" ) ;
19461946 t . deepEqual ( workspace . byGlob . getCall ( 2 ) . args , [ "/resources/**/.library" ] ,
19471947 "workspace.byGlob should have been called with expected pattern" ) ;
0 commit comments