Skip to content

Commit

Permalink
fix type name
Browse files Browse the repository at this point in the history
  • Loading branch information
cowanator committed May 1, 2024
1 parent 4e9fe29 commit d0b82c5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/e2e/execution.spec.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { expect } from "chai";
import { QueryParameter, ExecutionState, ExecutionAPI } from "../../src";
import log from "loglevel";
import { ExecutionPerformance } from "../../src/types/requestArgs";
import { QueryEngine } from "../../src/types/requestArgs";
import { BASIC_KEY, expectAsyncThrow } from "./util";
import { sleep } from "../../src/utils";

Expand Down Expand Up @@ -69,9 +69,9 @@ describe("ExecutionAPI: native routes", () => {
expect(execution.execution_id).is.not.eq(null);
});

it("execute with Large tier performance", async () => {
it.only("executes with Large tier performance", async () => {
const execution = await client.executeQuery(testQueryId, {
performance: ExecutionPerformance.Large,
performance: QueryEngine.Large,
});
expect(execution.execution_id).is.not.eq(null);
});
Expand Down

0 comments on commit d0b82c5

Please sign in to comment.