@@ -341,7 +341,7 @@ describe('api: lifecycle hooks', () => {
341
341
// ])
342
342
} )
343
343
344
- test ( 'onRenderTracked' , async ( ) => {
344
+ it ( 'onRenderTracked' , async ( ) => {
345
345
const events : DebuggerEvent [ ] = [ ]
346
346
const onTrack = vi . fn ( ( e : DebuggerEvent ) => {
347
347
events . push ( e )
@@ -382,7 +382,7 @@ describe('api: lifecycle hooks', () => {
382
382
] )
383
383
} )
384
384
385
- test ( 'onRenderTrigger' , async ( ) => {
385
+ it ( 'onRenderTrigger' , async ( ) => {
386
386
const events : DebuggerEvent [ ] = [ ]
387
387
const onTrigger = vi . fn ( ( e : DebuggerEvent ) => {
388
388
events . push ( e )
@@ -462,7 +462,7 @@ describe('api: lifecycle hooks', () => {
462
462
} )
463
463
464
464
// #136
465
- test ( 'should trigger updated hooks across components. (parent -> child)' , async ( ) => {
465
+ it ( 'should trigger updated hooks across components. (parent -> child)' , async ( ) => {
466
466
const handleUpdated = vi . fn ( )
467
467
const handleUpdatedChild = vi . fn ( )
468
468
@@ -507,7 +507,7 @@ describe('api: lifecycle hooks', () => {
507
507
} )
508
508
509
509
// #136
510
- test ( 'should trigger updated hooks across components. (child -> parent)' , async ( ) => {
510
+ it ( 'should trigger updated hooks across components. (child -> parent)' , async ( ) => {
511
511
const handleUpdated = vi . fn ( )
512
512
const handleUpdatedChild = vi . fn ( )
513
513
0 commit comments