mirror of
https://github.com/elastic/kibana.git
synced 2025-04-22 08:49:27 -04:00
* refactor failed_tests_reporter to use TS, no octokit (#46993)
* refactor failed_tests_reporter to use TS, no octokit
* update renovate config
* ensure that all kbn-test files are in ts project
* fix some type errors
* add some more tests
* [kbn-test/githubapi] cleanup and document
* collect log messages as strings instead of message objects
* ensure issue is open when updating body
* improve readability of getKibanaIssues
* expose axios helpers from dev-utils
* fix request params for fetching github issues and validate locally
* include a README for failed_tests_reporter
* improve axios error helpers
# Conflicts:
# package.json
# packages/kbn-dev-utils/src/axios/errors.ts
# packages/kbn-dev-utils/src/index.ts
# packages/kbn-dev-utils/src/kbn_client/kbn_client_requester.ts
# packages/kbn-test/src/index.ts
# packages/kbn-test/src/mocha/junit_report_generation.js
# renovate.json5
# src/dev/jest/junit_reporter.js
# yarn.lock
* ensure all of kbn-test is in ts project
(cherry picked from commit 41134fe134
)
* backport dev-utils constants
21 lines
884 B
JavaScript
21 lines
884 B
JavaScript
/*
|
|
* Licensed to Elasticsearch B.V. under one or more contributor
|
|
* license agreements. See the NOTICE file distributed with
|
|
* this work for additional information regarding copyright
|
|
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
* the Apache License, Version 2.0 (the "License"); you may
|
|
* not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing,
|
|
* software distributed under the License is distributed on an
|
|
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
* KIND, either express or implied. See the License for the
|
|
* specific language governing permissions and limitations
|
|
* under the License.
|
|
*/
|
|
|
|
require('../src/setup_node_env');
|
|
require('@kbn/test').runFailedTestsReporterCli();
|