Skip to content

Commit

Permalink
remove from with json
Browse files Browse the repository at this point in the history
  • Loading branch information
AsafMah committed Sep 29, 2024
1 parent 1d871b3 commit ebffb5a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions packages/azure-kusto-data/test/clientTest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ import { KustoClient } from "../src/client.js";
import { ClientRequestProperties } from "../src/clientRequestProperties.js";
import { KustoResponseDataSetV1, KustoResponseDataSetV2 } from "../src/response.js";

import v2Response from "./data/response/v2.json" with { type: "json" };
import v2ResponseError from "./data/response/v2error.json" with { type: "json" };
import v1Response from "./data/response/v1.json" with { type: "json" };
import v1_2Response from "./data/response/v1_2.json" with { type: "json" };
import v2Response from "./data/response/v2.json";
import v2ResponseError from "./data/response/v2error.json";
import v1Response from "./data/response/v1.json";
import v1_2Response from "./data/response/v1_2.json";
import { Readable } from "stream";
import ConnectionBuilder from "../src/connectionBuilder.js";
import { CloudSettings } from "../src/cloudSettings.js";
Expand Down
2 changes: 1 addition & 1 deletion packages/azure-kusto-data/test/responseTest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

import assert from "assert";

import v2Response from "./data/response/v2.json" with { type: "json" };
import v2Response from "./data/response/v2.json";
import { KustoResponseDataSetV2, V2Frames } from "../src/response.js";

describe("KustoResultDataSet", () => {
Expand Down
2 changes: 1 addition & 1 deletion packages/quick_start_browser/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { IngestFlow } from "./IngestFlow";
import { QueryFlow } from "./QueryFlow";
import { ConfigJson, UpperFields } from "./UpperFields";
import logo from "./assets/download.png";
import myJson from "./kusto_sample_config.json" with { type: "json" };
import myJson from "./kusto_sample_config.json";
if (!window.Buffer) {
window.Buffer = Buffer;
}
Expand Down

0 comments on commit ebffb5a

Please sign in to comment.