fix(test): Remove oneOf to test verbosity of basic output

This commit is contained in:
Gerald Pinder 2024-10-28 23:45:06 -04:00
parent 02c198daa6
commit e528284909
2 changed files with 0 additions and 7 deletions

View file

@ -47,11 +47,7 @@ for (const module of modules) {
fs.writeFileSync(`${modulesDir}/index.tsp`,
moduleImports.map(m => `import "./${m}";`).join("\n") + `
import "@typespec/json-schema";
using TypeSpec.JsonSchema;
@oneOf
union RepoModule {
${moduleModels.map(m => ` ${m}Module`).join(",\n")}
}`