@@ -6,7 +6,7 @@ import { PineTest } from 'pinejs-client-supertest';
6
6
import { testInit , testDeInit , testLocalServer } from './lib/test-init.js' ;
7
7
import { env } from '@balena/pinejs' ;
8
8
import type Model from '@balena/pinejs/out/tasks/tasks.js' ;
9
- import cronParser from 'cron-parser' ;
9
+ import { CronExpressionParser } from 'cron-parser' ;
10
10
import { PINE_TEST_SIGNALS } from './lib/common.js' ;
11
11
12
12
const actorId = 1 ;
@@ -241,7 +241,7 @@ describe('08 task tests', function () {
241
241
it ( 'should set scheduled execution time when cron expression is provided' , async ( ) => {
242
242
// Create a task to create a new device record in 3s
243
243
const cron = '0 0 2,8,12,14 * * *' ;
244
- const expectedSchedule = cronParser . parseExpression ( cron ) . next ( ) . toDate ( ) ;
244
+ const expectedSchedule = CronExpressionParser . parse ( cron ) . next ( ) . toDate ( ) ;
245
245
const task = await createTask ( pineTest , apikey , {
246
246
is_executed_by__handler : 'create_device' ,
247
247
is_executed_with__parameter_set : {
@@ -363,8 +363,7 @@ describe('08 task tests', function () {
363
363
} ,
364
364
} ) ;
365
365
366
- const nextExecutionDate = cronParser
367
- . parseExpression ( cron )
366
+ const nextExecutionDate = CronExpressionParser . parse ( cron )
368
367
. next ( )
369
368
. toISOString ( ) ;
370
369
await waitFor ( async ( ) => {
0 commit comments