Skip to content

Commit cb8a8d6

Browse files
committed
fix(test): update test for add timeout option
1 parent daab620 commit cb8a8d6

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

test/stack.specific.test.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { App } from 'aws-cdk-lib';
1+
import { App, Duration } from 'aws-cdk-lib';
22
import { Template } from 'aws-cdk-lib/assertions';
33
import { StepFunctionsExecutionStatueChangeNotificationStack } from '../src';
44

@@ -14,6 +14,9 @@ describe('Stack Specific Testing', () => {
1414
'bar@example.net',
1515
],
1616
},
17+
timeoutOption: {
18+
stateMachineTimeout: Duration.minutes(10),
19+
},
1720
});
1821

1922
const template = Template.fromStack(stack);

0 commit comments

Comments
 (0)