Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
Schnides123 committed Dec 19, 2024
1 parent 36a7762 commit 114a1ec
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 31 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export interface FileLocation {
export abstract class AbstractTypescriptGeneratorContext<
CustomConfig extends BaseTypescriptCustomConfigSchema
> extends AbstractGeneratorContext {
private rootImportPath: string = ".";
private rootImportPath = ".";
public readonly typescriptTypeMapper: TypescriptTypeMapper;

public constructor(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,36 +5,6 @@ import { buildGeneratorConfig } from "./utils/buildGeneratorConfig";
import { TestCase } from "./utils/TestCase";
import { AbsoluteFilePath } from "@fern-api/path-utils";

// describe("imdb", () => {
// it("success", async () => {
// const generator = new DynamicSnippetsGenerator({
// // eslint-disable-next-line @typescript-eslint/no-explicit-any
// ir: {} as any,
// // eslint-disable-next-line @typescript-eslint/no-explicit-any
// config: {} as any
// });
// const response = await generator.generate({
// endpoint: {
// method: "GET",
// path: "/movies/{movieId}"
// },
// baseURL: undefined,
// environment: undefined,
// auth: {
// type: "bearer",
// token: "<YOUR_API_KEY>"
// },
// pathParameters: {
// movieId: "movie_xyz"
// },
// queryParameters: undefined,
// headers: undefined,
// requestBody: undefined
// });
// expect(response.snippet).toMatchSnapshot();
// });
// });

describe("imdb (success)", () => {
const testCases: TestCase[] = [
{
Expand Down

0 comments on commit 114a1ec

Please sign in to comment.