File tree 1 file changed +4
-4
lines changed 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -204,7 +204,7 @@ describe("template function", () => {
204
204
`${ REQUEST_INIT_ERROR } : ID with value "1" already exists`
205
205
) ;
206
206
e (
207
- "" ,
207
+ "throws an error if passed duplicate numeric IDs for the RequestInit objects " ,
208
208
( ) =>
209
209
compile ( createTestObj2 ( `{{#r src="${ BASE_URL } /api/test"}}{{/r}}` ) ) ( [
210
210
{ id : 1 , value : { } } ,
@@ -300,7 +300,7 @@ describe("template function", () => {
300
300
`${ REQUEST_COMPONENT_ERROR } : Failed to activate or detect the indicator`
301
301
) ;
302
302
e (
303
- "" ,
303
+ "throws an error if interval is used with memoized request " ,
304
304
( ) =>
305
305
compile (
306
306
createTestObj2 (
@@ -310,7 +310,7 @@ describe("template function", () => {
310
310
`${ REQUEST_COMPONENT_ERROR } : The "${ INTERVAL } " property does not work with repetiton mode yet`
311
311
) ;
312
312
e (
313
- "" ,
313
+ "throws an error if interval is passed as a string instead of a number " ,
314
314
( ) =>
315
315
compile (
316
316
createTestObj2 (
@@ -365,7 +365,7 @@ describe("template function", () => {
365
365
'<div><button id="increment">Click</button><!--hmpl0--></div>'
366
366
) ;
367
367
eq (
368
- "" ,
368
+ "Should render request block with indicators and placeholder on initial load " ,
369
369
compile (
370
370
createTestObj2 (
371
371
`<button id="increment">Click</button>{{#r src="/api/test" after="click:#increment"}}
You can’t perform that action at this time.
0 commit comments