Skip to content

Commit ba735ae

Browse files
authored
addressing more pr comments (#264)
1 parent 841b0ed commit ba735ae

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

packages/runtime/test/client-api/delegate.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ describe('Delegate model tests ', () => {
302302
});
303303
});
304304

305-
describe('Delegate filter tests', async () => {
305+
describe('Delegate filter tests', () => {
306306
beforeEach(async () => {
307307
const u = await client.user.create({
308308
data: {
@@ -546,7 +546,7 @@ describe('Delegate model tests ', () => {
546546
});
547547
});
548548

549-
describe('Delegate update tests', async () => {
549+
describe('Delegate update tests', () => {
550550
beforeEach(async () => {
551551
const u = await client.user.create({
552552
data: {

packages/runtime/test/plugin/on-kysely-query.test.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
import { InsertQueryNode, Kysely, PrimitiveValueListNode, ValuesNode, type QueryResult } from 'kysely';
2-
import { beforeEach, describe, expect, it } from 'vitest';
2+
import { afterEach, beforeEach, describe, expect, it } from 'vitest';
33
import { type ClientContract } from '../../src/client';
44
import { schema } from '../schemas/basic';
55
import { createTestClient } from '../utils';
6-
import { afterEach } from 'node:test';
76

87
describe('On kysely query tests', () => {
98
let _client: ClientContract<typeof schema>;

0 commit comments

Comments
 (0)