Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/runtime/test/client-api/delegate.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ describe('Delegate model tests ', () => {
});
});

describe('Delegate filter tests', async () => {
describe('Delegate filter tests', () => {
beforeEach(async () => {
const u = await client.user.create({
data: {
Expand Down Expand Up @@ -546,7 +546,7 @@ describe('Delegate model tests ', () => {
});
});

describe('Delegate update tests', async () => {
describe('Delegate update tests', () => {
beforeEach(async () => {
const u = await client.user.create({
data: {
Expand Down
3 changes: 1 addition & 2 deletions packages/runtime/test/plugin/on-kysely-query.test.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
import { InsertQueryNode, Kysely, PrimitiveValueListNode, ValuesNode, type QueryResult } from 'kysely';
import { beforeEach, describe, expect, it } from 'vitest';
import { afterEach, beforeEach, describe, expect, it } from 'vitest';
import { type ClientContract } from '../../src/client';
import { schema } from '../schemas/basic';
import { createTestClient } from '../utils';
import { afterEach } from 'node:test';

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