Skip to content

Commit 00ca6d0

Browse files
committed
Fixed import in spec.
1 parent 45d7310 commit 00ca6d0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
3333
- name: Build TS
3434
run: |
35-
ls node_modules && npm run build
35+
npm run build
3636
3737
- name: Run Tests
3838
run: |

packages/outbox-prisma-adapter/test/outbox-prisma-adapter.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ import {
33
type CommonEventDefinition,
44
enrichMessageSchemaWithBase,
55
} from '@message-queue-toolkit/schemas'
6+
import { PrismaClient } from '@prisma/client'
67
import { uuidv7 } from 'uuidv7'
78
import { afterAll, beforeAll, beforeEach, describe, expect, it } from 'vitest'
89
import { z } from 'zod'
910
import { OutboxPrismaAdapter } from '../lib/outbox-prisma-adapter'
10-
import { PrismaClient } from './db-client'
1111

1212
const events = {
1313
created: {

0 commit comments

Comments
 (0)