File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
backend/src/services/__tests__ Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -166,15 +166,14 @@ describe('TenantService tests', () => {
166
166
167
167
tenantCreatedPlain . createdAt = tenantCreatedPlain . createdAt . toISOString ( ) . split ( 'T' ) [ 0 ]
168
168
tenantCreatedPlain . updatedAt = tenantCreatedPlain . updatedAt . toISOString ( ) . split ( 'T' ) [ 0 ]
169
- tenantCreatedPlain . trialEndsAt = tenantCreatedPlain . trialEndsAt . toISOString ( ) . split ( 'T' ) [ 0 ]
170
169
171
170
const tenantExpected = {
172
171
id : tenantCreatedPlain . id ,
173
172
name : 'testName' ,
174
173
url : 'testUrl' ,
175
- plan : Plans . values . growth ,
176
- isTrialPlan : true ,
177
- trialEndsAt : moment ( ) . add ( 14 , 'days' ) . toISOString ( ) . split ( 'T' ) [ 0 ] ,
174
+ plan : Plans . values . essential ,
175
+ isTrialPlan : false ,
176
+ trialEndsAt : null ,
178
177
onboardedAt : null ,
179
178
integrationsRequired : [ 'github' , 'discord' ] ,
180
179
hasSampleData : false ,
You can’t perform that action at this time.
0 commit comments