Skip to content

Commit

Permalink
Don't verify certs in tests
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Farr <[email protected]>
  • Loading branch information
Xtansia committed Jun 5, 2024
1 parent ad45556 commit 008bffb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tools/tests/tester/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ export function construct_tester_components (spec_path: string): {
} {
const specification: OpenAPIV3.Document = read_yaml(spec_path)
const spec_parser = new SpecParser(specification)
const opensearch_http_client = new OpenSearchHttpClient()
const opensearch_http_client = new OpenSearchHttpClient({
insecure: true
})
const chapter_reader = new ChapterReader(opensearch_http_client)
const schema_validator = new SchemaValidator(specification)
const chapter_evaluator = new ChapterEvaluator(spec_parser, chapter_reader, schema_validator)
Expand Down

0 comments on commit 008bffb

Please sign in to comment.