You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"Implicit dependency should be added since an XMLView is analyzed");
155
159
156
-
t.is(verboseLogStub.callCount,2,"should be called 2 times");
157
-
t.is(verboseLogStub.getCall(0).args[0],"Ignoring core:require: Attribute of Node Button contains an expression binding and is within a 'template' Node","first argument");
160
+
t.is(verboseLogStub.callCount,1,"should be called 1 time");
161
+
t.deepEqual(verboseLogStub.getCall(0).args,[
162
+
"Ignoring core:require: '%s' on Node %s:%s contains an expression binding and is within a 'template' Node",
"Implicit dependency should be added since an XMLView is analyzed");
196
205
197
-
t.is(verboseLogStub.callCount,2,"should be called 2 times");
198
-
t.is(verboseLogStub.getCall(0).args[0],"Ignoring core:require: Attribute of Node Button contains an expression binding and is within a 'template' Node","first argument");
206
+
t.is(verboseLogStub.callCount,1,"should be called 1 time");
207
+
t.deepEqual(verboseLogStub.getCall(0).args,[
208
+
"Ignoring core:require: '%s' on Node %s:%s contains an expression binding and is within a 'template' Node",
209
+
"{= 'foo': true}",
210
+
"sap.m",
211
+
"Button"
212
+
],"should be called with expected args");
199
213
});
200
214
201
215
test("integration: Analysis of an xml view with core:require",async(t)=>{
0 commit comments