@@ -113,7 +113,7 @@ describe("http/actors", () => {
113
113
114
114
const config = JSON . parse ( await res . text ( ) ) ;
115
115
116
- expect ( config . entities . length ) . toBe ( 9 ) ;
116
+ expect ( config . entities . length ) . toBe ( 11 ) ;
117
117
expect ( config . actorIdleTimeout ) . toBe ( "1h" ) ;
118
118
expect ( config . actorScanInterval ) . toBe ( "30s" ) ;
119
119
expect ( config . drainOngoingCallTimeout ) . toBe ( "1m" ) ;
@@ -179,15 +179,19 @@ describe("http/actors", () => {
179
179
it ( "should register actors correctly" , async ( ) => {
180
180
const actors = await server . actor . getRegisteredActors ( ) ;
181
181
182
- expect ( actors . length ) . toEqual ( 9 ) ;
182
+ expect ( actors . length ) . toEqual ( 11 ) ;
183
183
184
184
expect ( actors ) . toContain ( DemoActorCounterImpl . name ) ;
185
185
expect ( actors ) . toContain ( DemoActorSayImpl . name ) ;
186
186
expect ( actors ) . toContain ( DemoActorReminderImpl . name ) ;
187
+ expect ( actors ) . toContain ( DemoActorReminder2Impl . name ) ;
188
+ expect ( actors ) . toContain ( DemoActorReminderOnceImpl . name ) ;
187
189
expect ( actors ) . toContain ( DemoActorTimerImpl . name ) ;
190
+ expect ( actors ) . toContain ( DemoActorTimerOnceImpl . name ) ;
188
191
expect ( actors ) . toContain ( DemoActorActivateImpl . name ) ;
189
192
expect ( actors ) . toContain ( DemoActorTimerTtlImpl . name ) ;
190
193
expect ( actors ) . toContain ( DemoActorReminderTtlImpl . name ) ;
194
+ expect ( actors ) . toContain ( DemoActorDeleteStateImpl . name ) ;
191
195
} ) ;
192
196
193
197
it ( "should be able to invoke an actor through a text message" , async ( ) => {
0 commit comments