@@ -203,42 +203,42 @@ describe("ttlShutdownAt", () => {
203
203
[
204
204
"One hour --> helper text shows shutdown after 1 hour" ,
205
205
1 ,
206
- "Your workspace will shut down 1 hour after its next start. We delay shutdown by 1 hour whenever we detect activity. " ,
206
+ "Your workspace will shut down 1 hour after its next start." ,
207
207
] ,
208
208
[
209
209
"Two hours --> helper text shows shutdown after 2 hours" ,
210
210
2 ,
211
- "Your workspace will shut down 2 hours after its next start. We delay shutdown by 1 hour whenever we detect activity. " ,
211
+ "Your workspace will shut down 2 hours after its next start." ,
212
212
] ,
213
213
[
214
214
"24 hours --> helper text shows shutdown after 1 day" ,
215
215
24 ,
216
- "Your workspace will shut down 1 day after its next start. We delay shutdown by 1 hour whenever we detect activity. " ,
216
+ "Your workspace will shut down 1 day after its next start." ,
217
217
] ,
218
218
[
219
219
"48 hours --> helper text shows shutdown after 2 days" ,
220
220
48 ,
221
- "Your workspace will shut down 2 days after its next start. We delay shutdown by 1 hour whenever we detect activity. " ,
221
+ "Your workspace will shut down 2 days after its next start." ,
222
222
] ,
223
223
[
224
224
"1.2 hours --> helper text shows shutdown after 1 hour and 12 minutes" ,
225
225
1.2 ,
226
- "Your workspace will shut down 1 hour and 12 minutes after its next start. We delay shutdown by 1 hour whenever we detect activity. " ,
226
+ "Your workspace will shut down 1 hour and 12 minutes after its next start." ,
227
227
] ,
228
228
[
229
229
"24.2 hours --> helper text shows shutdown after 1 day and 12 minutes" ,
230
230
24.2 ,
231
- "Your workspace will shut down 1 day and 12 minutes after its next start. We delay shutdown by 1 hour whenever we detect activity. " ,
231
+ "Your workspace will shut down 1 day and 12 minutes after its next start." ,
232
232
] ,
233
233
[
234
234
"0.2 hours --> helper text shows shutdown after 12 minutes" ,
235
235
0.2 ,
236
- "Your workspace will shut down 12 minutes after its next start. We delay shutdown by 1 hour whenever we detect activity. " ,
236
+ "Your workspace will shut down 12 minutes after its next start." ,
237
237
] ,
238
238
[
239
239
"48.258 hours --> helper text shows shutdown after 2 days and 15 minutes and 28 seconds" ,
240
240
48.258 ,
241
- "Your workspace will shut down 2 days and 15 minutes and 28 seconds after its next start. We delay shutdown by 1 hour whenever we detect activity. " ,
241
+ "Your workspace will shut down 2 days and 15 minutes and 28 seconds after its next start." ,
242
242
] ,
243
243
] ) ( "%p" , ( _ , ttlHours , expected ) => {
244
244
expect ( ttlShutdownAt ( ttlHours ) ) . toEqual ( expected ) ;
0 commit comments