Skip to content

Commit

Permalink
♻️
Browse files Browse the repository at this point in the history
  • Loading branch information
inferrinizzard committed Apr 14, 2024
1 parent a5504eb commit af7ed36
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions test/languages.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export const CSharpLanguage: Language = {
{ "number-type": "decimal" },
{ "any-type": "dynamic" }
],
sourceFiles: ["src/language/CSharp/index/index.ts"]
sourceFiles: ["src/language/CSharp/index.ts"]
};

export const CSharpLanguageSystemTextJson: Language = {
Expand Down Expand Up @@ -769,7 +769,7 @@ export const TypeScriptLanguage: Language = {
],
allowMissingNull: false,
features: ["enum", "union", "no-defaults", "strict-optional", "date-time"],
output: "TopLevel/index.ts",
output: "TopLevel.ts",
topLevel: "TopLevel",
skipJSON: [
"7681c.json" // year 0 is out of range
Expand Down Expand Up @@ -846,7 +846,7 @@ export const JavaScriptPropTypesLanguage: Language = {
{ "runtime-typecheck-ignore-unknown-properties": "true" },
{ converters: "top-level" }
],
sourceFiles: ["src/Language/JavaScriptPropTypes/index.ts"]
sourceFiles: ["src/language/JavaScriptPropTypes/index.ts"]
};

export const FlowLanguage: Language = {
Expand Down Expand Up @@ -955,7 +955,7 @@ I havea no idea how to encode these tests correctly.
skipMiscJSON: false,
rendererOptions: { framework: "circe" },
quickTestRendererOptions: [],
sourceFiles: ["src/Language/Scala3/index.ts"]
sourceFiles: ["src/language/Scala3/index.ts"]
};

export const Smithy4sLanguage: Language = {
Expand Down Expand Up @@ -1021,7 +1021,7 @@ I havea no idea how to encode these tests correctly.
skipMiscJSON: false,
rendererOptions: { framework: "just-types" },
quickTestRendererOptions: [],
sourceFiles: ["src/Language/Smithy4s/index.ts"]
sourceFiles: ["src/language/Smithy4s/index.ts"]
};

export const KotlinLanguage: Language = {
Expand Down Expand Up @@ -1105,7 +1105,7 @@ export const KotlinLanguage: Language = {
skipMiscJSON: false,
rendererOptions: {},
quickTestRendererOptions: [],
sourceFiles: ["src/Language/Kotlin/index.ts"]
sourceFiles: ["src/language/Kotlin/index.ts"]
};

export const KotlinJacksonLanguage: Language = {
Expand Down Expand Up @@ -1188,7 +1188,7 @@ export const KotlinJacksonLanguage: Language = {
skipMiscJSON: false,
rendererOptions: { framework: "jackson" },
quickTestRendererOptions: [],
sourceFiles: ["src/Language/Kotlin/index.ts"]
sourceFiles: ["src/language/Kotlin/index.ts"]
};

export const DartLanguage: Language = {
Expand Down Expand Up @@ -1238,7 +1238,7 @@ export const DartLanguage: Language = {
skipMiscJSON: true,
rendererOptions: {},
quickTestRendererOptions: [],
sourceFiles: ["src/Language/Dart/index.ts"]
sourceFiles: ["src/language/Dart/index.ts"]
};

export const PikeLanguage: Language = {
Expand Down Expand Up @@ -1291,7 +1291,7 @@ export const PikeLanguage: Language = {
],
rendererOptions: {},
quickTestRendererOptions: [],
sourceFiles: ["src/Language/Pike/index.ts"]
sourceFiles: ["src/language/Pike/index.ts"]
};

export const HaskellLanguage: Language = {
Expand Down Expand Up @@ -1398,7 +1398,7 @@ export const PHPLanguage: Language = {
skipSchema: [],
rendererOptions: {},
quickTestRendererOptions: [],
sourceFiles: ["src/Language/Php/index.ts"]
sourceFiles: ["src/language/Php/index.ts"]
};

export const TypeScriptZodLanguage: Language = {
Expand Down Expand Up @@ -1436,7 +1436,7 @@ export const TypeScriptZodLanguage: Language = {
],
allowMissingNull: false,
features: ["enum", "union", "no-defaults", "date-time"],
output: "TopLevel/index.ts",
output: "TopLevel.ts",
topLevel: "TopLevel",
skipJSON: [
// Uses generated schema before it's defined
Expand Down Expand Up @@ -1554,7 +1554,7 @@ export const TypeScriptEffectSchemaLanguage: Language = {
],
allowMissingNull: false,
features: ["enum", "union", "no-defaults"],
output: "TopLevel/index.ts",
output: "TopLevel.ts",
topLevel: "TopLevel",
skipJSON: [
// Uses generated schema before it's defined
Expand Down

0 comments on commit af7ed36

Please sign in to comment.