mirror of
https://github.com/elastic/kibana.git
synced 2025-04-25 10:23:14 -04:00
apply prettier styles
This commit is contained in:
parent
64ad4f3f92
commit
bf04235dae
7130 changed files with 31393 additions and 37163 deletions
|
@ -26,10 +26,10 @@ import { safeLoad } from 'js-yaml';
|
|||
|
||||
const JOBS_YAML = readFileSync(resolve(__dirname, '../.ci/jobs.yml'), 'utf8');
|
||||
const TEST_TAGS = safeLoad(JOBS_YAML)
|
||||
.JOB.filter(id => id.startsWith('kibana-ciGroup'))
|
||||
.map(id => id.replace(/^kibana-/, ''));
|
||||
.JOB.filter((id) => id.startsWith('kibana-ciGroup'))
|
||||
.map((id) => id.replace(/^kibana-/, ''));
|
||||
|
||||
const getDefaultArgs = tag => {
|
||||
const getDefaultArgs = (tag) => {
|
||||
return [
|
||||
'scripts/functional_tests',
|
||||
'--include-tag',
|
||||
|
@ -66,13 +66,13 @@ export function getFunctionalTestGroupRunConfigs({ kibanaInstallDir } = {}) {
|
|||
grunt.registerTask(
|
||||
'functionalTests:ensureAllTestsInCiGroup',
|
||||
'Check that all of the functional tests are in a CI group',
|
||||
async function() {
|
||||
async function () {
|
||||
const done = this.async();
|
||||
|
||||
try {
|
||||
const result = await execa(process.execPath, [
|
||||
'scripts/functional_test_runner',
|
||||
...TEST_TAGS.map(tag => `--include-tag=${tag}`),
|
||||
...TEST_TAGS.map((tag) => `--include-tag=${tag}`),
|
||||
'--config',
|
||||
'test/functional/config.js',
|
||||
'--test-stats',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue