Skip to content

Commit 4c9101c

Browse files
committed
CCM-14203 - Attempt to fix acceptance tests
1 parent 01d9ec1 commit 4c9101c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

jest.config.base.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export const baseJestConfig: Config = {
55
clearMocks: true,
66
collectCoverage: true,
77
coverageDirectory: "./.reports/unit/coverage",
8-
coverageProvider: "v8",
8+
coverageProvider: "babel",
99
coveragePathIgnorePatterns: ["/__tests__/", "/node_modules/"],
1010
transform: { "^.+\\.ts$": "ts-jest" },
1111
testPathIgnorePatterns: [".build"],

tests/integration/helpers/cloudwatch-helpers.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ export async function getMessageStatusCallbacks(
6060
): Promise<CallbackItem[]> {
6161
const logs = await getCallbackLogsFromCloudWatch(
6262
logGroupName,
63-
`%${requestItemId}%MessageStatus%`,
63+
`%${requestItemId}% %MessageStatus%`,
6464
startTime,
6565
);
6666
return parseCallbacksFromLogs(logs);
@@ -73,7 +73,7 @@ export async function getChannelStatusCallbacks(
7373
): Promise<CallbackItem[]> {
7474
const logs = await getCallbackLogsFromCloudWatch(
7575
logGroupName,
76-
`%${requestItemId}%ChannelStatus%`,
76+
`%${requestItemId}% %ChannelStatus%`,
7777
startTime,
7878
);
7979
return parseCallbacksFromLogs(logs);

0 commit comments

Comments
 (0)