Skip to content

Commit

Permalink
Replace driver with gel in imports
Browse files Browse the repository at this point in the history
  • Loading branch information
diksipav committed Jan 21, 2025
1 parent b8e6165 commit 2db24bf
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import tseslint from "typescript-eslint";

const DRIVER_PATH = "packages/gel/src/**/*.?(m)ts";
const GENERATE_PATH = "packages/generate/src/**/*.?(m)ts";
const FEATURE_LIBRARIES_PATH = "packages/!(driver|generate)/src/**/*.?(m)ts";
const FEATURE_LIBRARIES_PATH = "packages/!(gel|generate)/src/**/*.?(m)ts";
const INTEGRATION_TESTS_PATH = "integration-tests/*/*.test.?(m)ts";

const ALL_PATHS = [
Expand Down
2 changes: 1 addition & 1 deletion packages/auth-core/test/globalSetup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
getServerCommand,
getWSLPath,
startServer,
} from "../../driver/test/testUtil";
} from "../../gel/test/testUtil";

export default async () => {
// tslint:disable-next-line
Expand Down
2 changes: 1 addition & 1 deletion packages/auth-core/test/globalTeardown.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { shutdown } from "../../driver/test/testUtil";
import { shutdown } from "../../gel/test/testUtil";

export default async () => {
// tslint:disable-next-line
Expand Down
2 changes: 1 addition & 1 deletion packages/auth-core/test/testbase.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Client, ConnectOptions } from "gel";
import * as testbase from "../../driver/test/testbase";
import * as testbase from "../../gel/test/testbase";

export const getClient = testbase.getClient as unknown as (
opts?: ConnectOptions,
Expand Down
4 changes: 2 additions & 2 deletions packages/generate/test/testRunner.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import createClient from "../../driver/src/index.node";
import createClient from "../../gel/src/index.node";

import {
shutdown,
Expand All @@ -9,7 +9,7 @@ import {
startServer,
runCommand,
configToEnv,
} from "../../driver/test/testUtil";
} from "../../gel/test/testUtil";

(async function main() {
console.log("\nStarting Gel test cluster...");
Expand Down

0 comments on commit 2db24bf

Please sign in to comment.