Skip to content

Commit

Permalink
remove commnts
Browse files Browse the repository at this point in the history
  • Loading branch information
danielpza committed Aug 19, 2024
1 parent 15ad649 commit 372b264
Showing 1 changed file with 1 addition and 14 deletions.
15 changes: 1 addition & 14 deletions test/tests/transformer/specific.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// noinspection ES6UnusedImports
import * as path from "node:path";
import path from "node:path";
import {
createTsProgram,
EmittedFiles,
Expand All @@ -11,10 +10,6 @@ import { projectsPaths, ts, tsModules } from "../../config";
import { TsTransformPathsConfig } from "typescript-transform-paths";
import TS from "typescript";

/* ****************************************************************************************************************** *
* Config
* ****************************************************************************************************************** */

const baseConfig: TsTransformPathsConfig = { exclude: ["**/excluded/**", "excluded-file.*"] };

/* Test Mapping */
Expand All @@ -34,10 +29,6 @@ const typeElisionIndex = ts.normalizePath(path.join(projectRoot, "src/type-elisi
const subPackagesFile = ts.normalizePath(path.join(projectRoot, "src/sub-packages.ts"));
const moduleAugmentFile = ts.normalizePath(path.join(projectRoot, "src/module-augment.ts"));

/* ****************************************************************************************************************** *
* Types
* ****************************************************************************************************************** */

declare global {
namespace jest {
// eslint-disable-next-line @typescript-eslint/no-unused-vars -- no way to extend type definitions without using the same declaration as the original types
Expand All @@ -47,10 +38,6 @@ declare global {
}
}

/* ****************************************************************************************************************** *
* Tests
* ****************************************************************************************************************** */

describe(`Specific Tests`, () => {
describe.each(testConfigs)(`TypeScript $label - Mode: $mode`, ({ tsInstance, mode, tsSpecifier }) => {
const tsVersion = +tsInstance.versionMajorMinor.split(".").slice(0, 2).join("");
Expand Down

0 comments on commit 372b264

Please sign in to comment.