Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Omondi committed Apr 16, 2024
1 parent 68a3557 commit 9f9d0bb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public async Task GeneratesManifest()
{
OutputPath = outputDirectory,
OpenAPIFilePath = "openapiPath",
PluginTypes = [PluginType.APIManifest],
PluginTypes = [PluginType.Microsoft],
ClientClassName = "client",
};
var (openAPIDocumentStream, _) = await openAPIDocumentDS.LoadStreamAsync(simpleDescriptionPath, generationConfiguration, null, false);
Expand All @@ -59,7 +59,7 @@ public async Task GeneratesManifest()
var pluginsGenerationService = new PluginsGenerationService(openApiDocument, urlTreeNode, generationConfiguration);
await pluginsGenerationService.GenerateManifestAsync();

Assert.True(File.Exists(Path.Combine(outputDirectory, "manifest.json")));
Assert.True(File.Exists(Path.Combine(outputDirectory, "client-microsoft.json")));
Assert.True(File.Exists(Path.Combine(outputDirectory, "openapi.yml")));
}
}

0 comments on commit 9f9d0bb

Please sign in to comment.