Skip to content

Commit 239914e

Browse files
committed
AP-5046 Updated package json + ignore job definition cc.
1 parent 9849e68 commit 239914e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/outbox-core/lib/outbox.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ export class OutboxProcessor<SupportedEvents extends CommonEventDefinition[]> {
8181
*
8282
* Max retry count is defined by the user.
8383
*/
84+
/* c8 ignore start */
8485
export class OutboxPeriodicJob<
8586
SupportedEvents extends CommonEventDefinition[],
8687
> extends AbstractPeriodicJob {
@@ -120,6 +121,7 @@ export class OutboxPeriodicJob<
120121
await this.outboxProcessor.processOutboxEntries(context)
121122
}
122123
}
124+
/* c8 ignore stop */
123125

124126
export class OutboxEventEmitter<SupportedEvents extends CommonEventDefinition[]> {
125127
constructor(private storage: OutboxStorage<SupportedEvents>) {}

packages/outbox-core/package.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,9 @@
1717
"build:release": "del-cli dist && del-cli coverage && npm run lint && tsc --project tsconfig.release.json",
1818
"test": "vitest",
1919
"test:coverage": "npm test -- --coverage",
20-
"test:ci": "npm run docker:start:dev && npm run test:coverage && npm run docker:stop:dev",
20+
"test:ci": "npm run test:coverage",
2121
"lint": "biome check . && tsc --project tsconfig.json --noEmit",
2222
"lint:fix": "biome check --write .",
23-
"docker:start:dev": "docker compose up -d",
24-
"docker:stop:dev": "docker compose down",
2523
"prepublishOnly": "npm run build:release"
2624
},
2725
"dependencies": {

0 commit comments

Comments
 (0)